結果

問題 No.1935 Water Simulation
ユーザー rpy3cpprpy3cpp
提出日時 2022-05-13 23:09:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,036 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 10,996 KB
実行使用メモリ 8,368 KB
最終ジャッジ日時 2023-09-29 08:51:53
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 17 ms
8,164 KB
testcase_05 AC 17 ms
8,220 KB
testcase_06 AC 17 ms
8,352 KB
testcase_07 AC 17 ms
8,216 KB
testcase_08 AC 17 ms
8,352 KB
testcase_09 AC 17 ms
8,364 KB
testcase_10 AC 16 ms
8,292 KB
testcase_11 AC 16 ms
8,356 KB
testcase_12 AC 16 ms
8,352 KB
testcase_13 AC 16 ms
8,220 KB
testcase_14 AC 16 ms
8,220 KB
testcase_15 AC 16 ms
7,816 KB
testcase_16 AC 16 ms
8,216 KB
testcase_17 AC 16 ms
8,292 KB
testcase_18 AC 16 ms
8,356 KB
testcase_19 AC 16 ms
8,308 KB
testcase_20 AC 16 ms
8,220 KB
testcase_21 AC 17 ms
8,308 KB
testcase_22 AC 17 ms
8,192 KB
testcase_23 AC 17 ms
8,340 KB
testcase_24 AC 16 ms
8,340 KB
testcase_25 AC 16 ms
8,344 KB
testcase_26 AC 16 ms
8,296 KB
testcase_27 AC 16 ms
8,244 KB
testcase_28 AC 16 ms
8,304 KB
testcase_29 AC 16 ms
8,308 KB
testcase_30 AC 16 ms
8,204 KB
testcase_31 AC 17 ms
8,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def next_status(status, turn):
    a, b, c, d = status
    t = turn % 4
    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)

def solve(N):
    dic = dict()
    status = (v1, 0, 0, 0)
    hist = [status]
    turn = 0
    while status not in dic:
        dic[status] = turn
        status = next_status(status, turn)
        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 = solve(N)
print(a, b, c, d)
0