結果

問題 No.1935 Water Simulation
ユーザー tktk_snsntktk_snsn
提出日時 2022-05-13 21:49:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 502 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-07-22 01:32:44
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
53,004 KB
testcase_05 AC 41 ms
53,112 KB
testcase_06 AC 39 ms
52,512 KB
testcase_07 AC 40 ms
52,332 KB
testcase_08 AC 39 ms
51,700 KB
testcase_09 AC 40 ms
52,860 KB
testcase_10 AC 38 ms
52,552 KB
testcase_11 AC 40 ms
52,372 KB
testcase_12 AC 40 ms
52,964 KB
testcase_13 AC 39 ms
53,508 KB
testcase_14 AC 40 ms
52,512 KB
testcase_15 AC 39 ms
52,636 KB
testcase_16 AC 39 ms
52,524 KB
testcase_17 AC 38 ms
53,100 KB
testcase_18 AC 39 ms
52,316 KB
testcase_19 AC 40 ms
52,368 KB
testcase_20 AC 39 ms
52,472 KB
testcase_21 AC 39 ms
52,352 KB
testcase_22 AC 39 ms
52,388 KB
testcase_23 AC 39 ms
52,532 KB
testcase_24 AC 39 ms
52,532 KB
testcase_25 AC 41 ms
54,052 KB
testcase_26 AC 40 ms
52,392 KB
testcase_27 AC 42 ms
52,080 KB
testcase_28 AC 41 ms
53,020 KB
testcase_29 AC 38 ms
52,740 KB
testcase_30 AC 39 ms
52,228 KB
testcase_31 AC 39 ms
52,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
高々comb(103, 3)通り
"""

X = list(map(int, input().split()))
N = X.pop()


W = [0] * 4
W[0] = X[0]

used = set()
memo = []

for i in range(10 ** 9):
    used.add(tuple(W))
    memo.append(tuple(W))
    i %= 4
    j = (i + 1) % 4
    wi = W[i]
    wj = X[j] - W[j]
    d = min(wi, wj)
    W[i] -= d
    W[j] += d
    if tuple(W) in used:
        break


if len(memo) > N:
    assert(0)
    print(*memo[N])
    exit()

f = memo.index(tuple(W))
s = len(memo) - f
N -= f
N %= s
print(*memo[f + N])
0