Submission #00220
ソースコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | #include <bits/stdc++.h> // clang-format off #define pb push_back #define eb emplace_back #define fi first #define se second #define each(x,v) for(auto& x : v) #define all(v) (v).begin(),(v).end() #define sz(v) ((int)(v).size()) #define ini(...) int __VA_ARGS__; in(__VA_ARGS__) #define inl(...) long long __VA_ARGS__; in(__VA_ARGS__) #define ins(...) string __VA_ARGS__; in(__VA_ARGS__) #ifdef ONLINE_JUDGE #define rep(i,N) for(int i = 0; i < (int)(N); i++) #define repr(i,N) for(int i = (int)(N) - 1; i >= 0; i--) #define rep1(i,N) for(int i = 1; i <= (int)(N) ; i++) #define repr1(i,N) for(int i = (N) ; (int)(i) > 0 ; i--) #else #define rep(i,N) for(long long i = 0; i < (long long)(N); i++) #define repr(i,N) for(long long i = (long long)(N) - 1; i >= 0; i--) #define rep1(i,N) for(long long i = 1; i <= (long long)(N) ; i++) #define repr1(i,N) for(long long i = (N) ; (long long)(i) > 0 ; i--) #endif using namespace std; void solve(); using ll = long long ; template < class T = ll> using V = vector<T>; using vi = V< int >; using vl = V<>; using vvi = V< V< int > >; constexpr int inf = 1001001001; constexpr ll infLL = (1LL << 61) - 1; struct IoSetupNya {IoSetupNya() { cin.tie(nullptr); ios::sync_with_stdio( false ); cout << fixed << setprecision(15); cerr << fixed << setprecision(7);} } iosetupnya; template < typename T, typename U> inline bool amin(T &x, U y) { return (y < x) ? (x = y, true ) : false ; } template < typename T, typename U> inline bool amax(T &x, U y) { return (x < y) ? (x = y, true ) : false ; } template < typename T, typename U> ostream& operator <<(ostream& os, const pair<T, U> &p) { os << p.first << " " << p.second; return os; } template < typename T, typename U> istream& operator >>(istream& is, pair<T, U> &p) { is >> p.first >> p.second; return is; } template < typename T> ostream& operator <<(ostream& os, const vector<T> &v) { int s = ( int )v.size(); for ( int i=0;i<s;i++) os << (i ? " " : "" ) << v[i]; return os; } template < typename T> istream& operator >>(istream& is, vector<T> &v) { for (auto &x : v) is >> x; return is; } void in(){} template < typename T, class ... U> void in(T &t,U &...u){ cin >> t; in(u...);} void out(){cout << "\n" ;} template < typename T, class ... U> void out( const T &t, const U &...u){ cout << t; if ( sizeof ...(u)) cout << " " ; out(u...);} template < typename T> void die(T x){out(x); exit (0);} #ifdef NyaanDebug #include "NyaanDebug.h" #define trc(...) do { cerr << #__VA_ARGS__ << " = "; dbg_out(__VA_ARGS__);} while(0) #define trca(v,N) do { cerr << #v << " = "; array_out(v , N);} while(0) #define trcc(v) do { cerr << "name : " << #v << "\n"; int cnt = 0; each(x , v){cerr << (cnt++) << " : "; trc(x); } } while(0) #else #define trc(...) #define trca(...) #define trcc(...) int main(){solve();} #endif #define inc(...) char __VA_ARGS__; in(__VA_ARGS__) #define in2(s,t) rep(i,sz(s)){in(s[i] , t[i]);} #define in3(s,t,u) rep(i,sz(s)){in(s[i] , t[i] , u[i]);} #define in4(s,t,u,v) rep(i,sz(s)){in(s[i] , t[i] , u[i] , v[i]);} using vd = V< double >; using vs = V<string>; using vvl = V< V<> >; template < typename T, typename U>ll ceil (T a,U b){ return (a + b - 1) / b;} using P = pair< int , int >; using vp = V<P>; constexpr int MOD = /** 1000000007; //*/ 998244353; // clang-format on /////////////////////////////////////////////////////////// void solve(){ ini(N,M,D); out(min(N , M * D)); } |
ステータス
項目 | データ |
---|---|
問題 | 0001 - Eating NAMEKUZI |
ユーザー名 | Nyaan |
投稿日時 | 2020-03-02 21:40:41 |
言語 | C++14 |
状態 | Accepted |
得点 | 100 |
ソースコード長 | 3446 Byte |
最大実行時間 | 29 ms |
最大メモリ使用量 | 672 KB |
セット
セット | 得点 | Cases | |
---|---|---|---|
1 | ALL | 100 / 100 | * |
テストケース
ファイル名 | 状態 | 実行時間 | メモリ使用量 | # |
---|---|---|---|---|
in01.txt | AC | 24 ms | 604 KB |
1
|
in02.txt | AC | 17 ms | 432 KB |
1
|
in03.txt | AC | 27 ms | 516 KB |
1
|
in04.txt | AC | 16 ms | 472 KB |
1
|
in05.txt | AC | 16 ms | 556 KB |
1
|
in06.txt | AC | 15 ms | 512 KB |
1
|
in07.txt | AC | 18 ms | 472 KB |
1
|
in08.txt | AC | 24 ms | 556 KB |
1
|
in09.txt | AC | 22 ms | 512 KB |
1
|
in10.txt | AC | 17 ms | 464 KB |
1
|
in11.txt | AC | 21 ms | 420 KB |
1
|
in12.txt | AC | 26 ms | 508 KB |
1
|
in13.txt | AC | 17 ms | 588 KB |
1
|
in14.txt | AC | 29 ms | 672 KB |
1
|
in15.txt | AC | 17 ms | 500 KB |
1
|
in16.txt | AC | 21 ms | 580 KB |
1
|
sample01.txt | AC | 23 ms | 540 KB |
1
|
sample02.txt | AC | 17 ms | 624 KB |
1
|