結果

問題 No.1935 Water Simulation
ユーザー Issei MoriIssei Mori
提出日時 2022-05-13 22:27:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 61,220 KB
最終ジャッジ日時 2024-07-22 04:35:39
合計ジャッジ時間 2,534 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,004 KB
testcase_01 AC 48 ms
61,100 KB
testcase_02 AC 45 ms
60,472 KB
testcase_03 AC 45 ms
60,280 KB
testcase_04 AC 43 ms
59,864 KB
testcase_05 AC 45 ms
59,600 KB
testcase_06 AC 46 ms
60,476 KB
testcase_07 AC 45 ms
60,404 KB
testcase_08 AC 46 ms
60,332 KB
testcase_09 AC 46 ms
61,220 KB
testcase_10 AC 46 ms
60,216 KB
testcase_11 AC 46 ms
61,104 KB
testcase_12 AC 45 ms
59,976 KB
testcase_13 AC 45 ms
60,532 KB
testcase_14 AC 46 ms
60,892 KB
testcase_15 AC 45 ms
60,908 KB
testcase_16 AC 45 ms
60,948 KB
testcase_17 AC 45 ms
60,620 KB
testcase_18 AC 45 ms
60,008 KB
testcase_19 AC 46 ms
61,160 KB
testcase_20 AC 45 ms
60,936 KB
testcase_21 AC 45 ms
60,568 KB
testcase_22 AC 45 ms
61,044 KB
testcase_23 AC 46 ms
60,432 KB
testcase_24 AC 46 ms
60,252 KB
testcase_25 AC 46 ms
60,780 KB
testcase_26 AC 45 ms
60,992 KB
testcase_27 AC 45 ms
61,144 KB
testcase_28 AC 45 ms
60,076 KB
testcase_29 AC 40 ms
54,360 KB
testcase_30 AC 46 ms
60,388 KB
testcase_31 AC 45 ms
60,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict

sys.setrecursionlimit(10 ** 7)


def get_list(ty=int):
    return list(map(ty, input().split()))


def get_int():
    return int(input())


def get_str():
    return input()


V1, V2, V3, V4, N = get_list()

V = [V1, V2, V3, V4]


def smart(V):
    C = [0] * 4
    C[0] = V[0]
    history = defaultdict(int)
    for n in range(N):
        a = n % 4
        b = (n + 1) % 4
        diff = min(V[b] - C[b], C[a])
        C[a] -= diff
        C[b] += diff
        if history[tuple(C)] >= 100 and (n + 1) % 4 == N % 4:
            break
        history[tuple(C)] += 1

    return C


print(" ".join(str(c) for c in smart(V)))
0