結果

問題 No.1935 Water Simulation
ユーザー lloyzlloyz
提出日時 2022-05-13 22:04:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 1,128 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-07-22 04:34:50
合計ジャッジ時間 2,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 30 ms
11,008 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 30 ms
10,880 KB
testcase_22 AC 31 ms
10,880 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 30 ms
10,880 KB
testcase_26 AC 30 ms
10,880 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 30 ms
11,008 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

if len(sys.argv) == 2:
    sys.stdin = open(sys.argv[1])

v1, v2, v3, v4, n = map(int, input().split())

cnt = 0
ANS = [v1, 0, 0, 0]
L = []
flag = False
while n > 0:
    if cnt % 4 == 0:
        if ANS[0] + ANS[1] <= v2:
            ANS[1] += ANS[0]
            ANS[0] = 0
        else:
            ANS[0] -= v2 - ANS[1]
            ANS[1] = v2
    elif cnt % 4 == 1:
        if ANS[1] + ANS[2] <= v3:
            ANS[2] += ANS[1]
            ANS[1] = 0
        else:
            ANS[1] -= v3 - ANS[2]
            ANS[2] = v3
    elif cnt % 4 == 2:
        if ANS[2] + ANS[3] <= v4:
            ANS[3] += ANS[2]
            ANS[2] = 0
        else:
            ANS[2] -= v4 - ANS[3]
            ANS[3] = v4
    else:
        if ANS[3] + ANS[0] <= v1:
            ANS[0] += ANS[3]
            ANS[3] = 0
        else:
            ANS[3] -= v1 - ANS[0]
            ANS[0] = v1
    cnt += 1
    n -= 1
    if len(L) < 4:
        L.append(ANS[:])
    else:
        if L[0] == ANS:
            flag = True
            break
        L = L[1:]
        L.append(ANS[:])
if flag:
    print(*L[n % 4])
else:
    print(*L[-1])
0