結果
問題 | No.796 well known |
ユーザー | catwanwan12345 |
提出日時 | 2019-10-25 20:48:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 7 ms / 2,000 ms |
コード長 | 1,077 bytes |
コンパイル時間 | 2,069 ms |
コンパイル使用メモリ | 167,856 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-22 07:47:19 |
合計ジャッジ時間 | 2,503 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 5 ms
6,940 KB |
testcase_05 | AC | 6 ms
6,940 KB |
testcase_06 | AC | 6 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 6 ms
6,944 KB |
testcase_09 | AC | 4 ms
6,940 KB |
testcase_10 | AC | 7 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,944 KB |
testcase_12 | AC | 4 ms
6,940 KB |
testcase_13 | AC | 6 ms
6,944 KB |
testcase_14 | AC | 4 ms
6,940 KB |
testcase_15 | AC | 4 ms
6,940 KB |
testcase_16 | AC | 7 ms
6,944 KB |
ソースコード
#include "bits/stdc++.h" using namespace std; #define int long long void YN(bool flg){cout<<(flg?"YES":"NO")<<endl;} void Yn(bool flg){cout<<(flg?"Yes":"No")<<endl;} void yn(bool flg){cout<<(flg?"yes":"no")<<endl;} #define SORT(a) sort(a.begin(),a.end()) #define REVERSE(a) reverse(a.begin(),a.end()) #define REP(i, n) for(int i = 0;i < n;i++) #define FOR(i, m, n) for(int i = m;i < n;i++) #define db(n) cout << "### " << n << " ###" << endl; typedef vector<int> VI; typedef vector<VI> VVI; typedef long long ll; const long long MOD=1000000007; const long long INF = 10e10; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int GCD(int a, int b) { return b ? GCD(b, a%b) : a; } int LCM(int a, int b) { int g = GCD(a, b); return a / g * b; } signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout<<fixed<<setprecision(15); int n; cin >> n; FOR(i,1,n) cout << 3 << ' '; cout << 1 << endl; return 0; }