結果

問題 No.1935 Water Simulation
ユーザー roarisroaris
提出日時 2022-05-14 18:30:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 728 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,852 KB
実行使用メモリ 53,684 KB
最終ジャッジ日時 2024-07-23 04:39:52
合計ジャッジ時間 2,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,752 KB
testcase_01 AC 38 ms
52,756 KB
testcase_02 AC 38 ms
52,552 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
53,104 KB
testcase_06 AC 36 ms
52,888 KB
testcase_07 AC 37 ms
53,208 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 37 ms
53,168 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 36 ms
52,520 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 37 ms
53,536 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 37 ms
52,344 KB
testcase_24 WA -
testcase_25 AC 37 ms
53,052 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 36 ms
52,276 KB
testcase_30 AC 36 ms
53,128 KB
testcase_31 AC 37 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

V1, V2, V3, V4, N = map(int, input().split())
V = [V1, V2, V3, V4]
now = [V1, 0, 0, 0]
s = {tuple(now)}

for i in range(N):
    if now[i%4]+now[(i+1)%4]<=V[(i+1)%4]:
        now[i%4], now[(i+1)%4] = 0, now[i%4]+now[(i+1)%4]
    else:
        now[i%4], now[(i+1)%4] = now[i%4]-V[(i+1)%4]+now[(i+1)%4], V[(i+1)%4]
    
    if i%4==3:
        if tuple(now) in s:
            for j in range(N%((i+1)//4)):
                if now[j%4]+now[(j+1)%4]<=V[(j+1)%4]:
                    now[j%4], now[(j+1)%4] = 0, now[j%4]+now[(j+1)%4]
                else:
                    now[j%4], now[(j+1)%4] = now[j%4]-V[(j+1)%4]+now[(j+1)%4], V[(j+1)%4]
            
            exit(print(*now))
        
        s.add(tuple(now))

print(*now)
0