結果

問題 No.1935 Water Simulation
ユーザー tassei903tassei903
提出日時 2022-05-14 00:40:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 61,172 KB
最終ジャッジ日時 2024-07-22 05:28:43
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,624 KB
testcase_01 AC 56 ms
60,296 KB
testcase_02 AC 54 ms
59,840 KB
testcase_03 AC 53 ms
59,688 KB
testcase_04 AC 57 ms
60,748 KB
testcase_05 AC 53 ms
60,248 KB
testcase_06 AC 53 ms
59,752 KB
testcase_07 AC 53 ms
59,236 KB
testcase_08 AC 57 ms
60,040 KB
testcase_09 AC 57 ms
59,996 KB
testcase_10 AC 57 ms
60,460 KB
testcase_11 AC 55 ms
60,068 KB
testcase_12 AC 48 ms
59,816 KB
testcase_13 AC 48 ms
58,992 KB
testcase_14 AC 49 ms
59,376 KB
testcase_15 AC 55 ms
60,220 KB
testcase_16 AC 56 ms
60,532 KB
testcase_17 AC 53 ms
59,880 KB
testcase_18 AC 49 ms
58,224 KB
testcase_19 AC 57 ms
61,172 KB
testcase_20 AC 52 ms
59,120 KB
testcase_21 AC 54 ms
59,936 KB
testcase_22 AC 56 ms
60,196 KB
testcase_23 AC 49 ms
58,900 KB
testcase_24 AC 53 ms
59,988 KB
testcase_25 AC 56 ms
60,772 KB
testcase_26 AC 50 ms
59,020 KB
testcase_27 AC 52 ms
59,720 KB
testcase_28 AC 52 ms
60,888 KB
testcase_29 AC 39 ms
52,620 KB
testcase_30 AC 39 ms
52,004 KB
testcase_31 AC 53 ms
60,904 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 + 1000000, 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