結果

問題 No.1935 Water Simulation
ユーザー siganaisiganai
提出日時 2022-05-13 21:47:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,057 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 66,020 KB
最終ジャッジ日時 2024-07-22 01:26:36
合計ジャッジ時間 3,314 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 54 ms
64,920 KB
testcase_05 AC 53 ms
63,796 KB
testcase_06 AC 54 ms
64,536 KB
testcase_07 AC 52 ms
64,276 KB
testcase_08 AC 52 ms
64,492 KB
testcase_09 AC 53 ms
65,264 KB
testcase_10 AC 57 ms
66,020 KB
testcase_11 AC 53 ms
65,484 KB
testcase_12 AC 53 ms
64,120 KB
testcase_13 AC 52 ms
65,348 KB
testcase_14 AC 58 ms
64,188 KB
testcase_15 AC 56 ms
65,040 KB
testcase_16 AC 55 ms
65,040 KB
testcase_17 AC 56 ms
64,200 KB
testcase_18 AC 56 ms
65,456 KB
testcase_19 AC 55 ms
64,988 KB
testcase_20 AC 54 ms
64,864 KB
testcase_21 AC 56 ms
65,612 KB
testcase_22 AC 54 ms
65,008 KB
testcase_23 AC 56 ms
64,440 KB
testcase_24 AC 55 ms
64,436 KB
testcase_25 AC 53 ms
64,920 KB
testcase_26 AC 53 ms
64,836 KB
testcase_27 AC 54 ms
64,364 KB
testcase_28 AC 52 ms
64,184 KB
testcase_29 AC 54 ms
63,916 KB
testcase_30 AC 55 ms
64,288 KB
testcase_31 AC 55 ms
65,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
from heapq import *
import functools
mod=998244353

import sys
input=sys.stdin.readline
v1,v2,v3,v4,n=map(int,input().split())
d = defaultdict(lambda: -1)
cnt = 0
d[(v1,0,0,0)] = 0
n4=n2=n3=0;n1=v1
while cnt < n:
    if cnt % 4 == 0:
        dis = min(v2 - n2,n1)
        n1 -= dis
        n2 += dis
    elif cnt % 4 == 1:
        dis = min(v3-n3,n2)
        n2 -= dis
        n3 += dis
    elif cnt % 4 == 2:
        dis = min(v4 - n4,n3)
        n3 -= dis
        n4 += dis
    else:
        dis = min(v1-n1,n4)
        n4 -= dis
        n1 += dis
    cnt += 1
    if d[(n1,n2,n3,n4)] == -1:
        d[(n1,n2,n3,n4)] = cnt
    else:
        loop = cnt - d[(n1,n2,n3,n4)]
        break
if cnt == n:
    print(n1,n2,n3,n4)
else:
    rem = d[(n1,n2,n3,n4)]
    p = (n - rem) % loop + rem
    for key,value in d.items():
        if value == p:
            print(*key)
            exit()
0