結果

問題 No.1935 Water Simulation
ユーザー shobonvipshobonvip
提出日時 2022-05-13 21:35:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-07-22 01:08:13
合計ジャッジ時間 3,033 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 46 ms
53,376 KB
testcase_06 AC 47 ms
54,144 KB
testcase_07 AC 46 ms
53,504 KB
testcase_08 AC 47 ms
54,272 KB
testcase_09 AC 47 ms
53,504 KB
testcase_10 AC 54 ms
53,760 KB
testcase_11 AC 53 ms
54,272 KB
testcase_12 AC 53 ms
53,760 KB
testcase_13 AC 47 ms
53,888 KB
testcase_14 AC 47 ms
53,760 KB
testcase_15 AC 48 ms
53,760 KB
testcase_16 AC 47 ms
53,632 KB
testcase_17 AC 46 ms
53,760 KB
testcase_18 AC 46 ms
53,504 KB
testcase_19 AC 46 ms
53,632 KB
testcase_20 AC 46 ms
53,504 KB
testcase_21 AC 47 ms
53,888 KB
testcase_22 AC 46 ms
54,144 KB
testcase_23 AC 46 ms
53,760 KB
testcase_24 AC 46 ms
53,760 KB
testcase_25 AC 46 ms
53,760 KB
testcase_26 AC 46 ms
53,376 KB
testcase_27 AC 47 ms
54,272 KB
testcase_28 AC 46 ms
53,632 KB
testcase_29 AC 45 ms
53,888 KB
testcase_30 AC 46 ms
53,888 KB
testcase_31 AC 47 ms
53,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

a,b,c,d,n = map(int,input().split())
v = [a,0,0,0]
pro = defaultdict(lambda:-1)
loop = []


tmp = " ".join([str(v[i]) for i in range(4)])
loop.append(tmp)
pro[tmp] = 0

i = 0
while True:
	if i % 4 == 0:
		targ = min(v[0], b-v[1])
		v[0] -= targ
		v[1] += targ
	elif i % 4  == 1:
		targ = min(v[1], c-v[2])
		v[1] -= targ
		v[2] += targ
	elif i % 4 == 2:
		targ = min(v[2], d-v[3])
		v[2] -= targ
		v[3] += targ
	else:
		targ = min(v[3], a-v[0])
		v[3] -= targ
		v[0] += targ
	tmp = " ".join([str(v[i]) for i in range(4)])
	if pro[tmp] >= 0:
		rep = i+1 - pro[tmp]
		ind = pro[tmp]
		break
	pro[tmp] = i+1
	loop.append(tmp)
	i += 1

if n < ind:
	print(loop[n])
else:
	print(loop[ind + (n-ind)%rep])
0