結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 36 ms
51,872 KB
testcase_05 AC 36 ms
52,336 KB
testcase_06 AC 36 ms
53,496 KB
testcase_07 AC 35 ms
53,624 KB
testcase_08 AC 35 ms
53,144 KB
testcase_09 AC 34 ms
53,292 KB
testcase_10 AC 39 ms
53,288 KB
testcase_11 AC 37 ms
52,808 KB
testcase_12 AC 35 ms
52,332 KB
testcase_13 AC 35 ms
53,016 KB
testcase_14 AC 35 ms
53,072 KB
testcase_15 AC 36 ms
51,808 KB
testcase_16 AC 37 ms
52,532 KB
testcase_17 AC 36 ms
52,596 KB
testcase_18 AC 35 ms
52,612 KB
testcase_19 AC 35 ms
53,100 KB
testcase_20 AC 35 ms
53,248 KB
testcase_21 AC 35 ms
52,256 KB
testcase_22 AC 35 ms
53,232 KB
testcase_23 AC 36 ms
52,648 KB
testcase_24 AC 36 ms
52,832 KB
testcase_25 AC 36 ms
52,416 KB
testcase_26 AC 38 ms
52,736 KB
testcase_27 AC 38 ms
53,388 KB
testcase_28 AC 38 ms
52,160 KB
testcase_29 AC 39 ms
52,944 KB
testcase_30 AC 38 ms
53,496 KB
testcase_31 AC 36 ms
52,472 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):
    if i == N:
        print(*W)
        exit()
    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


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