結果

問題 No.1935 Water Simulation
ユーザー abababab
提出日時 2022-05-13 22:13:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 524 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 55,620 KB
最終ジャッジ日時 2024-07-22 02:10:41
合計ジャッジ時間 3,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 43 ms
54,008 KB
testcase_05 AC 43 ms
55,196 KB
testcase_06 AC 42 ms
55,172 KB
testcase_07 AC 43 ms
53,928 KB
testcase_08 AC 42 ms
55,192 KB
testcase_09 AC 43 ms
54,592 KB
testcase_10 AC 42 ms
55,620 KB
testcase_11 AC 42 ms
54,072 KB
testcase_12 AC 42 ms
54,252 KB
testcase_13 AC 42 ms
54,244 KB
testcase_14 AC 43 ms
54,252 KB
testcase_15 AC 43 ms
54,156 KB
testcase_16 AC 42 ms
54,460 KB
testcase_17 AC 43 ms
54,204 KB
testcase_18 AC 42 ms
54,260 KB
testcase_19 AC 43 ms
54,128 KB
testcase_20 AC 42 ms
54,552 KB
testcase_21 AC 43 ms
54,432 KB
testcase_22 AC 43 ms
53,928 KB
testcase_23 AC 43 ms
54,080 KB
testcase_24 AC 42 ms
54,188 KB
testcase_25 AC 42 ms
54,588 KB
testcase_26 AC 42 ms
54,924 KB
testcase_27 AC 42 ms
53,876 KB
testcase_28 AC 42 ms
54,528 KB
testcase_29 AC 42 ms
54,828 KB
testcase_30 AC 43 ms
54,044 KB
testcase_31 AC 43 ms
55,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from itertools import count

*V, n = map(int, input().split())

now = [0] * 4
now[0] = V[0]

idx = defaultdict(lambda : -1)
route = []

for i in count():
    idx[tuple(now)] = i
    route.append(now[:])

    l, r = i % 4, (i + 1) % 4
    move = min(now[l], V[r] - now[r])
    now[l] -= move
    now[r] += move

    if tuple(now) in idx:
        break

loop = idx[tuple(now)]

if n < loop:
    print(*route[n])
else:
    route = route[loop:]
    n -= loop
    print(*route[n % len(route)])
0