結果
問題 | No.1935 Water Simulation |
ユーザー | 炭酸水 |
提出日時 | 2022-05-13 22:41:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,389 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-07-22 02:50:06 |
合計ジャッジ時間 | 1,857 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 30 ms
11,008 KB |
testcase_07 | AC | 27 ms
11,008 KB |
testcase_08 | AC | 28 ms
11,008 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 26 ms
11,008 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 27 ms
11,008 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 27 ms
11,136 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 28 ms
11,136 KB |
testcase_25 | AC | 30 ms
11,008 KB |
testcase_26 | WA | - |
testcase_27 | AC | 26 ms
11,008 KB |
testcase_28 | AC | 27 ms
11,008 KB |
testcase_29 | AC | 28 ms
11,008 KB |
testcase_30 | AC | 28 ms
11,008 KB |
testcase_31 | WA | - |
ソースコード
a, b, c, d, n = map(int, input().split()) s = [a, b, c, d] dp = [a, 0, 0, 0] s_0 = [] s_1 = set() j = 0 sw = True while sw: s_0.append(dp.copy()) s_1.add(tuple(dp)) if dp[j % 4] + dp[(j + 1) % 4] <= s[(j + 1) % 4]: dp[j % 4], dp[(j + 1) % 4] = 0, dp[j % 4] + dp[(j + 1) % 4] else: dp[j % 4], dp[(j + 1) % 4] = dp[j % 4] + dp[(j + 1) % 4] - s[(j + 1) % 4], s[(j + 1) % 4] j += 1 if tuple(dp) in s_1: for i in range(len(s_0)): if dp == s_0[i]: loop_dp = dp loop = i loop_T = j - i sw = False if n <= loop: dp = [a, 0, 0, 0] j = 0 while j < n: if dp[j % 4] + dp[(j + 1) % 4] <= s[(j + 1) % 4]: dp[j % 4], dp[(j + 1) % 4] = 0, dp[j % 4] + dp[(j + 1) % 4] else: dp[j % 4], dp[(j + 1) % 4] = dp[j % 4] + dp[(j + 1) % 4] - s[(j + 1) % 4], s[(j + 1) % 4] j += 1 print(*dp) else: m = (n - loop) // loop_T k = n - loop - loop_T * m dp = loop_dp j = 0 while j <= k: if dp[j % 4] + dp[(j + 1) % 4] <= s[(j + 1) % 4]: dp[j % 4], dp[(j + 1) % 4] = 0, dp[j % 4] + dp[(j + 1) % 4] else: dp[j % 4], dp[(j + 1) % 4] = dp[j % 4] + dp[(j + 1) % 4] - s[(j + 1) % 4], s[(j + 1) % 4] j += 1 print(*dp)