結果

問題 No.1837 Same but Different
ユーザー 👑 rin204rin204
提出日時 2022-02-11 22:00:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 709 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 67,968 KB
最終ジャッジ日時 2024-06-27 18:34:18
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 WA -
testcase_03 AC 40 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 161 ms
67,200 KB
testcase_06 AC 165 ms
67,840 KB
testcase_07 WA -
testcase_08 AC 163 ms
67,200 KB
testcase_09 AC 166 ms
67,584 KB
testcase_10 WA -
testcase_11 AC 161 ms
66,944 KB
testcase_12 AC 160 ms
67,456 KB
testcase_13 WA -
testcase_14 AC 159 ms
66,944 KB
testcase_15 AC 78 ms
65,152 KB
testcase_16 WA -
testcase_17 AC 70 ms
64,384 KB
testcase_18 AC 100 ms
66,304 KB
testcase_19 AC 94 ms
65,408 KB
testcase_20 WA -
testcase_21 AC 86 ms
65,408 KB
testcase_22 WA -
testcase_23 AC 75 ms
64,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

A = []
B = []
m = n // 3
for i in range(m):
    A.append(9 * i + 3)
    A.append(9 * i + 6)
    A.append(9 * i + 9)
    B.append(3 * i + 1)
    
for i in range(2 * m):
    B.append(3 * m + 3 * i + 4)

if n % 3 == 1:
    b = B[-1]
    B[-1] += 3
    B.append(b + 6)
    A.append(b + 9)
    
elif n % 3 == 2:
    A[-1] += 3
    A.append(9985)
    B.append(9991)
    B.append(9994)
    A.append(9997)
    
    
print(*A)
print(*B)
    
assert sum(A) == sum(B)
assert max(A) <= 10000
assert max(B) <= 10000
se = set()
for i in range(n):
    for j in range(i + 1, n):
        se.add(A[i] + A[j])
for i in range(n):
    for j in range(i + 1, n):
        assert B[i] + B[j] not in se, (B[i] + B[j])
0