結果

問題 No.1935 Water Simulation
ユーザー Eki1009Eki1009
提出日時 2022-05-13 21:26:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 61,552 KB
最終ジャッジ日時 2024-07-22 04:29:49
合計ジャッジ時間 2,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,148 KB
testcase_01 AC 47 ms
59,800 KB
testcase_02 AC 43 ms
59,208 KB
testcase_03 AC 41 ms
60,244 KB
testcase_04 AC 44 ms
59,668 KB
testcase_05 AC 42 ms
59,320 KB
testcase_06 AC 43 ms
59,512 KB
testcase_07 AC 43 ms
59,896 KB
testcase_08 AC 43 ms
61,092 KB
testcase_09 AC 43 ms
60,996 KB
testcase_10 AC 42 ms
61,552 KB
testcase_11 AC 44 ms
60,560 KB
testcase_12 AC 40 ms
59,160 KB
testcase_13 AC 41 ms
59,032 KB
testcase_14 AC 42 ms
58,880 KB
testcase_15 AC 45 ms
61,276 KB
testcase_16 AC 43 ms
60,140 KB
testcase_17 AC 40 ms
59,348 KB
testcase_18 AC 40 ms
59,388 KB
testcase_19 AC 43 ms
60,480 KB
testcase_20 AC 41 ms
60,224 KB
testcase_21 AC 40 ms
59,088 KB
testcase_22 AC 42 ms
59,928 KB
testcase_23 AC 39 ms
59,520 KB
testcase_24 AC 40 ms
59,300 KB
testcase_25 AC 42 ms
60,212 KB
testcase_26 AC 40 ms
58,668 KB
testcase_27 AC 40 ms
60,644 KB
testcase_28 AC 41 ms
59,060 KB
testcase_29 AC 34 ms
52,800 KB
testcase_30 AC 37 ms
52,192 KB
testcase_31 AC 43 ms
60,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

*L,n = map(int,input().split())
C = [L[0],0,0,0]
m = min(n,10**5)
n -= m
n %= 4
for i in range(m+n):
  m = min(C[i%4],L[(i+1)%4]-C[(i+1)%4])
  C[i%4] -= m
  C[(i+1)%4] += m
print(*C)
0