結果
問題 | No.1837 Same but Different |
ユーザー | ぷら |
提出日時 | 2022-02-11 22:04:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 690 bytes |
コンパイル時間 | 2,038 ms |
コンパイル使用メモリ | 207,660 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-27 18:51:46 |
合計ジャッジ時間 | 7,261 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | WA | - |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | WA | - |
testcase_23 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; if(N%2 == 0) { vector<int>A(N),B(N); for(int i = 0; i < N; i++) { if(i < N/2) { A[i] = i*3; B[i] = A[i]+1; } else { A[i] = 10000-A[N-i-1]; B[i] = 10000-B[N-i-1]; } } vector<int>C = A; sort(C.begin(),C.end()); for(int i = 0; i < N; i++) { cout << A[i] << ((i+1 == N)?"\n":" "); } for(int i = 0; i < N; i++) { cout << B[i] << ((i+1 == N)?"\n":" "); } } else { assert(0); } }