結果

問題 No.1004 サイコロの実装 (2)
ユーザー miya145592miya145592
提出日時 2023-05-20 04:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-06-01 03:16:39
合計ジャッジ時間 3,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,740 KB
testcase_01 AC 40 ms
52,212 KB
testcase_02 AC 40 ms
52,424 KB
testcase_03 AC 38 ms
52,556 KB
testcase_04 AC 39 ms
53,184 KB
testcase_05 AC 39 ms
53,068 KB
testcase_06 AC 39 ms
53,488 KB
testcase_07 AC 37 ms
53,084 KB
testcase_08 AC 39 ms
54,092 KB
testcase_09 AC 38 ms
52,572 KB
testcase_10 AC 39 ms
52,868 KB
testcase_11 AC 39 ms
52,568 KB
testcase_12 AC 39 ms
52,976 KB
testcase_13 AC 39 ms
52,268 KB
testcase_14 AC 37 ms
53,140 KB
testcase_15 AC 39 ms
52,520 KB
testcase_16 AC 38 ms
52,420 KB
testcase_17 AC 39 ms
52,248 KB
testcase_18 AC 37 ms
53,808 KB
testcase_19 AC 39 ms
52,400 KB
testcase_20 AC 38 ms
52,752 KB
testcase_21 AC 38 ms
53,048 KB
testcase_22 AC 38 ms
53,316 KB
testcase_23 AC 37 ms
52,932 KB
testcase_24 AC 39 ms
53,216 KB
testcase_25 AC 40 ms
52,496 KB
testcase_26 AC 39 ms
52,348 KB
testcase_27 AC 38 ms
53,428 KB
testcase_28 AC 38 ms
53,020 KB
testcase_29 AC 39 ms
54,008 KB
testcase_30 AC 39 ms
52,828 KB
testcase_31 AC 40 ms
52,132 KB
testcase_32 AC 38 ms
53,404 KB
testcase_33 AC 38 ms
52,536 KB
testcase_34 AC 39 ms
52,328 KB
testcase_35 AC 38 ms
52,272 KB
testcase_36 AC 37 ms
53,228 KB
testcase_37 AC 39 ms
53,140 KB
testcase_38 AC 38 ms
52,752 KB
testcase_39 AC 38 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, x, N = map(int, input().split())
nxt = x
X = []
while True:
    nxt = (nxt*a+b)%6
    if nxt in X:
        break
    X.append(nxt)

if len(X)%2==1:
    X = X+X
#print(X)

loop = len(X)*2
cnt = N//loop
m = N%loop

nowT = 0
nowA = 0

cntT = [0, 0]
cntA = [0, 0]

si = 0
if cnt > 0:
    for i in range(loop):
        saiT = X[si%len(X)]+1
        nowT += saiT
        nowT %= 2
        cntT[nowT]+=1
        si += 1
        saiA = X[si%len(X)]+1
        nowA += saiA
        nowA %= 2
        cntA[nowA]+=1
        si+=1

    cntT = [cntT[0]*cnt, cntT[1]*cnt]
    cntA = [cntA[0]*cnt, cntA[1]*cnt]

for i in range(m):
    saiT = X[si%len(X)]+1
    nowT += saiT
    nowT %= 2
    cntT[nowT]+=1
    
    si += 1
    saiA = X[si%len(X)]+1
    nowA += saiA
    nowA %= 2
    cntA[nowA]+=1

    si+=1

scoT = min(cntT)
scoA = min(cntA)
print(scoT, scoA)
0