結果
問題 | No.1837 Same but Different |
ユーザー | aoymats1 |
提出日時 | 2022-02-12 21:55:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 274 bytes |
コンパイル時間 | 138 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 65,356 KB |
最終ジャッジ日時 | 2024-06-29 01:03:29 |
合計ジャッジ時間 | 3,843 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,840 KB |
testcase_01 | AC | 39 ms
51,584 KB |
testcase_02 | WA | - |
testcase_03 | AC | 33 ms
52,352 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 | AC | 43 ms
61,824 KB |
testcase_16 | WA | - |
testcase_17 | AC | 42 ms
61,440 KB |
testcase_18 | AC | 43 ms
62,464 KB |
testcase_19 | AC | 42 ms
62,080 KB |
testcase_20 | WA | - |
testcase_21 | AC | 43 ms
61,952 KB |
testcase_22 | WA | - |
testcase_23 | AC | 45 ms
62,080 KB |
ソースコード
N = int(input()) A = [3 * i for i in range(N)] B = [3 * i + 1 for i in range(N)] diff = sum(B) - sum(A) if diff % 3 == 0: A[-1] += diff elif diff % 3 == 1: A[-1] += diff elif diff % 3 == 2: A[-1] += 1 B[-1] -= diff - 1 A.sort() B.sort() print(*A) print(*B)