結果

問題 No.1837 Same but Different
ユーザー ikomaikoma
提出日時 2022-02-12 00:00:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 422 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,336 KB
最終ジャッジ日時 2024-06-27 22:38:24
合計ジャッジ時間 2,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,272 KB
testcase_01 AC 38 ms
51,680 KB
testcase_02 AC 38 ms
52,608 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 49 ms
62,964 KB
testcase_05 AC 49 ms
63,668 KB
testcase_06 AC 49 ms
63,052 KB
testcase_07 AC 48 ms
62,716 KB
testcase_08 AC 48 ms
63,592 KB
testcase_09 AC 49 ms
64,336 KB
testcase_10 AC 48 ms
63,036 KB
testcase_11 AC 48 ms
64,044 KB
testcase_12 AC 50 ms
62,860 KB
testcase_13 AC 49 ms
63,208 KB
testcase_14 AC 50 ms
63,388 KB
testcase_15 AC 49 ms
62,352 KB
testcase_16 AC 48 ms
62,592 KB
testcase_17 AC 50 ms
61,948 KB
testcase_18 AC 50 ms
62,584 KB
testcase_19 AC 49 ms
63,372 KB
testcase_20 AC 48 ms
62,932 KB
testcase_21 AC 48 ms
62,176 KB
testcase_22 AC 48 ms
61,468 KB
testcase_23 AC 49 ms
61,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(N):
    A = list(range(0,3*N,3))
    B = list(range(7,3*N+7,3))
    if N%3==1:
        A[0]+=1
    elif N%3==2:
        A[0]+=1
        A[1]+=1
    sumA = sum(A)
    sumB = sum(B)
    dif = sumB-sumA
    assert dif%3==0
    i=N-1
    mx = 9999
    while dif>0:
        d = min(dif,mx-A[i])
        A[i]+=d
        mx = A[i]-3
        i-=1
        dif -= d
    print(*A)
    print(*B)
    
N=int(input())
solve(N)
0