結果

問題 No.1935 Water Simulation
ユーザー rlangevinrlangevin
提出日時 2023-06-07 12:25:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 756 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-06-09 10:22:39
合計ジャッジ時間 2,169 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 31 ms
52,400 KB
testcase_05 AC 31 ms
53,248 KB
testcase_06 AC 31 ms
52,488 KB
testcase_07 AC 31 ms
52,820 KB
testcase_08 AC 32 ms
52,644 KB
testcase_09 AC 33 ms
53,696 KB
testcase_10 AC 33 ms
52,428 KB
testcase_11 AC 31 ms
52,380 KB
testcase_12 AC 32 ms
52,320 KB
testcase_13 AC 32 ms
52,964 KB
testcase_14 AC 32 ms
52,324 KB
testcase_15 AC 31 ms
53,620 KB
testcase_16 AC 31 ms
52,188 KB
testcase_17 AC 31 ms
53,316 KB
testcase_18 AC 32 ms
54,000 KB
testcase_19 AC 32 ms
52,924 KB
testcase_20 AC 31 ms
53,440 KB
testcase_21 AC 33 ms
52,200 KB
testcase_22 AC 31 ms
53,164 KB
testcase_23 AC 30 ms
52,836 KB
testcase_24 AC 31 ms
52,544 KB
testcase_25 AC 30 ms
52,460 KB
testcase_26 AC 31 ms
52,588 KB
testcase_27 AC 31 ms
53,280 KB
testcase_28 AC 31 ms
52,852 KB
testcase_29 AC 32 ms
52,812 KB
testcase_30 AC 31 ms
52,952 KB
testcase_31 AC 32 ms
53,384 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 = [now]
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]
    nex = tuple(nex)
    if nex in D:
        N -= D[nex]
        loop = cnt - D[nex] + 1
        L = L[D[nex]:]
        print(*L[N%loop])
        exit()
    else:
        cnt += 1
        D[nex] = cnt
        L.append(nex)
        if cnt == N:
            print(*nex)
            exit()
        now = nex
0