結果
問題 | No.1935 Water Simulation |
ユーザー |
|
提出日時 | 2022-05-13 23:09:16 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,036 bytes |
コンパイル時間 | 261 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-22 03:28:23 |
合計ジャッジ時間 | 2,246 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 25 WA * 4 |
ソースコード
v1, v2, v3, v4, N = map(int, input().strip().split())def next_status(status, turn):a, b, c, d = statust = turn % 4if t == 0:if a > v2 - b:a, b = a + b - v2, v2else:a, b = 0, a + belif t == 1:if b > v3 - c:b, c = b + c - v3, v3else:b, c = 0, b + celif t == 2:if c > v4 - d:c, d = c + d - v4, v4else:c, d = 0, c + delse:if d > v1 - a:d, a = d + a - v1, v1else:d, a = 0, a + dreturn (a, b, c, d)def solve(N):dic = dict()status = (v1, 0, 0, 0)hist = [status]turn = 0while status not in dic:dic[status] = turnstatus = next_status(status, turn)hist.append(status)turn += 1if turn == N:return statushead = dic[status]cycle = turn - headans = (N - head) % cyclereturn hist[head + ans]a, b, c, d = solve(N)print(a, b, c, d)