結果

問題 No.1935 Water Simulation
ユーザー tassei903tassei903
提出日時 2022-05-14 00:35:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 598 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 54,016 KB
最終ジャッジ日時 2024-07-22 05:18:59
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 39 ms
53,380 KB
testcase_03 WA -
testcase_04 AC 39 ms
52,412 KB
testcase_05 AC 38 ms
53,056 KB
testcase_06 AC 39 ms
52,464 KB
testcase_07 AC 39 ms
52,284 KB
testcase_08 AC 39 ms
52,992 KB
testcase_09 AC 39 ms
52,680 KB
testcase_10 AC 40 ms
53,012 KB
testcase_11 AC 39 ms
52,156 KB
testcase_12 AC 39 ms
52,308 KB
testcase_13 AC 39 ms
52,636 KB
testcase_14 AC 38 ms
52,312 KB
testcase_15 AC 38 ms
53,096 KB
testcase_16 AC 38 ms
52,824 KB
testcase_17 AC 39 ms
52,684 KB
testcase_18 AC 38 ms
52,524 KB
testcase_19 AC 38 ms
52,400 KB
testcase_20 AC 39 ms
52,484 KB
testcase_21 AC 38 ms
52,284 KB
testcase_22 AC 38 ms
53,496 KB
testcase_23 AC 39 ms
52,992 KB
testcase_24 AC 38 ms
53,216 KB
testcase_25 AC 38 ms
53,708 KB
testcase_26 AC 38 ms
53,020 KB
testcase_27 AC 39 ms
53,332 KB
testcase_28 AC 39 ms
52,372 KB
testcase_29 AC 38 ms
52,752 KB
testcase_30 AC 38 ms
53,352 KB
testcase_31 AC 40 ms
52,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

a,b,c,d,n = na()
n = min(n % 4 + 12, n)

v = [a,b,c,d]
w = [a,0,0,0]

m = 4
for j in range(n):
    x = min(w[j%4],v[(j+1)%4]-w[(j+1)%4]) 
    w[j%4] -= x
    w[(j+1)%4] += x
    """print(*w)
    if j % 4 == 3:
        print()
    """
print(*w)
0