結果

問題 No.1935 Water Simulation
ユーザー rpy3cpprpy3cpp
提出日時 2022-05-13 23:36:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 1,021 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-07-22 04:37:59
合計ジャッジ時間 2,445 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,060 KB
testcase_01 AC 41 ms
58,368 KB
testcase_02 AC 39 ms
54,216 KB
testcase_03 AC 36 ms
52,952 KB
testcase_04 AC 38 ms
53,728 KB
testcase_05 AC 37 ms
52,812 KB
testcase_06 AC 37 ms
52,468 KB
testcase_07 AC 37 ms
53,620 KB
testcase_08 AC 36 ms
53,940 KB
testcase_09 AC 37 ms
53,620 KB
testcase_10 AC 36 ms
53,104 KB
testcase_11 AC 37 ms
53,488 KB
testcase_12 AC 38 ms
52,196 KB
testcase_13 AC 37 ms
53,136 KB
testcase_14 AC 37 ms
53,416 KB
testcase_15 AC 40 ms
52,596 KB
testcase_16 AC 38 ms
52,500 KB
testcase_17 AC 38 ms
52,752 KB
testcase_18 AC 38 ms
52,748 KB
testcase_19 AC 39 ms
52,868 KB
testcase_20 AC 37 ms
53,664 KB
testcase_21 AC 36 ms
53,416 KB
testcase_22 AC 37 ms
52,476 KB
testcase_23 AC 35 ms
53,384 KB
testcase_24 AC 36 ms
52,668 KB
testcase_25 AC 35 ms
52,260 KB
testcase_26 AC 37 ms
53,544 KB
testcase_27 AC 37 ms
52,716 KB
testcase_28 AC 39 ms
53,196 KB
testcase_29 AC 36 ms
52,804 KB
testcase_30 AC 38 ms
53,164 KB
testcase_31 AC 38 ms
54,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

v1, v2, v3, v4, N = map(int, input().split())

def next_status(status):
    a, b, c, d, t = status
    if t == 0:
        if a > v2 - b:
            a, b = a + b - v2, v2
        else:
            a, b = 0, a + b
    elif t == 1:
        if b > v3 - c:
            b, c = b + c - v3, v3
        else:
            b, c = 0, b + c
    elif t == 2:
        if c > v4 - d:
            c, d = c + d - v4, v4
        else:
            c, d = 0, c + d
    else:
        if d > v1 - a:
            d, a = d + a - v1, v1
        else:
            d, a = 0, a + d
    return (a, b, c, d, (t + 1) % 4)

def solve(N):
    dic = dict()
    status = (v1, 0, 0, 0, 0)
    hist = [status]
    turn = 0
    while status not in dic:
        dic[status] = turn
        status = next_status(status)
        hist.append(status)
        turn += 1
        if turn == N:
            return status
    head = dic[status]
    cycle = turn - head
    ans = (N - head) % cycle
    return hist[head + ans]

a, b, c, d, t = solve(N)
print(a, b, c, d)
0