結果
問題 | No.796 well known |
ユーザー | log_K |
提出日時 | 2019-03-17 21:57:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 11 ms / 2,000 ms |
コード長 | 2,216 bytes |
コンパイル時間 | 782 ms |
コンパイル使用メモリ | 91,396 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 22:33:43 |
合計ジャッジ時間 | 1,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 9 ms
5,376 KB |
testcase_05 | AC | 10 ms
5,376 KB |
testcase_06 | AC | 11 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 10 ms
5,376 KB |
testcase_09 | AC | 7 ms
5,376 KB |
testcase_10 | AC | 11 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 6 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 5 ms
5,376 KB |
testcase_15 | AC | 7 ms
5,376 KB |
testcase_16 | AC | 11 ms
5,376 KB |
ソースコード
#include <iostream> #include <iomanip> #include <string> #include <algorithm> #include <cctype> #include <cmath> #include <climits> #include <vector> #include <tuple> #include <utility> #include <map> #include <iterator> #include <numeric> #include <complex> #include <locale> #include <stack> #include <queue> using namespace std; // Macro and Macro Functions #define loop while(1) #define Init = 0 #define rep(a, b) for(int a = 0; a < b; ++a) #define REP(a, b, c) for(int a = b; a < c; ++a) #define mrep(a, m) for(auto a = m.begin(); a != m.end(); ++a) #define debug if(DEBUG) #define int long long #define SORT(a) sort(ALL(a)) #define REVERSE(a) reverse(ALL(a)) #define MOD 1000000007 #define ALL(a) a.begin(), a.end() #define ALLIN(a) rep(i,a.size()) cin>>a[i] #define ALLINDE(a) rep(i,a.size()){cin>>a[i]; --a[i];} #define YN(a) do{if(a) cout<<"YES"; else cout<<"NO";}while(0) #define Yn(a) do{if(a) cout<<"Yes"; else cout<<"No";}while(0) #define yn(a) do{if(a) cout<<"yes"; else cout<<"no";}while(0) #define spa " " #define dspa " " #define ctoi(c) (c)-'0' #define altoi(a) (a)-'a' #define MAX 100010 // List of using using ll = signed long long; using ull = unsigned long long; using pint = pair<int, int>; using pong = pair<long, long>; using tint = tuple<int, int, int>; using tong = tuple<long, long, long>; using vint = vector<int>; using vll = vector<long long>; using vbol = vector<bool>; using vstr = vector<string>; using vull = vector<unsigned long long>; using dvin = vector<vector<int>>; using dvbo = vector<vector<bool>>; using mint = map<int,int>; // Common Variable bool DEBUG=false; int INF=3141592653; void print(){ cout<<'\n'; } template<class HEAD,class... TAIL> void print(HEAD&& head,TAIL&&... tail){ cout<<head<<spa; print(forward<TAIL>(tail)...); } void scan(){} template<class HEAD,class... TAIL> void scan(HEAD&& head,TAIL&&... tail){ cin>>head; scan(forward<TAIL>(tail)...); } template<typename t> void print(vector<t> &v){ rep(i,v.size()){ cout<<v[i]<<spa; } cout<<endl; } //-------------------------------- // Template Place //-------------------------------- signed main(){ int n; cin>>n; rep(i,n-1){ cout<<3<<" "; } cout<<4; }