結果

問題 No.1935 Water Simulation
ユーザー rlangevinrlangevin
提出日時 2023-06-07 12:30:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 61,548 KB
最終ジャッジ日時 2024-06-09 10:23:42
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
58,596 KB
testcase_01 AC 38 ms
61,548 KB
testcase_02 AC 32 ms
52,396 KB
testcase_03 AC 32 ms
53,212 KB
testcase_04 AC 32 ms
53,132 KB
testcase_05 AC 33 ms
53,040 KB
testcase_06 AC 31 ms
52,728 KB
testcase_07 AC 32 ms
54,024 KB
testcase_08 AC 36 ms
52,256 KB
testcase_09 AC 32 ms
52,792 KB
testcase_10 AC 31 ms
52,540 KB
testcase_11 AC 32 ms
52,568 KB
testcase_12 AC 32 ms
52,072 KB
testcase_13 AC 34 ms
52,532 KB
testcase_14 AC 34 ms
53,168 KB
testcase_15 AC 32 ms
52,720 KB
testcase_16 AC 31 ms
53,420 KB
testcase_17 AC 32 ms
53,552 KB
testcase_18 AC 31 ms
53,108 KB
testcase_19 AC 32 ms
52,760 KB
testcase_20 AC 32 ms
52,996 KB
testcase_21 AC 33 ms
52,760 KB
testcase_22 AC 33 ms
52,396 KB
testcase_23 AC 32 ms
53,360 KB
testcase_24 AC 33 ms
53,196 KB
testcase_25 AC 34 ms
52,736 KB
testcase_26 AC 33 ms
52,068 KB
testcase_27 AC 31 ms
53,160 KB
testcase_28 AC 32 ms
52,820 KB
testcase_29 AC 31 ms
53,436 KB
testcase_30 AC 31 ms
52,544 KB
testcase_31 AC 31 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V = list(map(int, input().split()))
N = V.pop()

D = dict()
now = (V[0], 0, 0, 0)
cnt = 0
D[now] = cnt
L = [(V[0], 0, 0, 0, 0)]
while True:
    # print("test", cnt, now)
    i = cnt%4
    ni = (i + 1)%4
    nex = [0] * 4
    if now[i] + now[ni] >= V[ni]:
        nex[ni] = V[ni]
        nex[i] = now[i] + now[ni] - V[ni]
    else:
        nex[ni] = now[i] + now[ni]
        nex[i] = 0

    for j in range(4):
        if j not in [i, ni]:
            nex[j] = now[j]
    key = tuple(nex + [cnt%4])
    nex = tuple(nex)
    if key in D:
        N -= D[key]
        loop = cnt - D[key] + 1
        L = L[D[key]:]
        print(*L[N%loop])
        exit()
    else:
        cnt += 1
        D[key] = cnt
        L.append(nex)
        if cnt == N:
            print(*nex)
            exit()
        now = nex
0