結果
問題 | No.796 well known |
ユーザー | KotRm |
提出日時 | 2019-03-15 23:29:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,559 bytes |
コンパイル時間 | 676 ms |
コンパイル使用メモリ | 66,348 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-01 21:44:04 |
合計ジャッジ時間 | 3,459 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include <iostream> #include <string> #include <time.h> #include <cmath> #include <cctype> #include <vector> #include <algorithm> #include <queue> #define REP(i, n) for(int i = 0; i < (int)(n); i++) #define FOR(i, j, k) for(int i = (int)(j); i < (int)(k); ++i) #define ROF(i, j, k) for(int i = (int)(j); i >= (int)(k); --i) #define SORT(v, n) sort(v, v+n) #define REVERSE(v) reverse((v).begin(), (v).end()) #define printn(x) cout << x << " "; #define print(x) cout << x << endl; using namespace std; int main(void){ cin.tie(0); ios::sync_with_stdio(false); int N; cin >> N; int k, c, sum, flag; int V[N]; if(N == 2){ print("1 3"); return 0; } sum = 0; flag = 0; FOR(a, 1, N){ REP(b, N-a){ c = N - a - b; if((b+2*c)%3==1){ k = 0; FOR(i, 1, a+1){ V[k] = 3*i; sum += V[k]; k += 1; } FOR(i, 0, b){ V[k] = 3*i + 1; sum += V[k]; k += 1; } FOR(i, 0, c){ V[k] = 3*i + 2; sum += V[k]; k += 1; } if(sum <= 312456){ flag = 1; break; } } } if(flag == 1){ break; } } REP(k, N){ printn(V[k]); } print(""); return 0; }