結果

問題 No.1004 サイコロの実装 (2)
ユーザー miya145592miya145592
提出日時 2023-05-20 04:49:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 53,808 KB
最終ジャッジ日時 2024-12-21 05:46:13
合計ジャッジ時間 3,724 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,080 KB
testcase_01 AC 44 ms
52,576 KB
testcase_02 AC 43 ms
52,976 KB
testcase_03 AC 43 ms
52,580 KB
testcase_04 AC 42 ms
52,332 KB
testcase_05 AC 44 ms
52,192 KB
testcase_06 AC 44 ms
52,540 KB
testcase_07 AC 45 ms
52,416 KB
testcase_08 AC 43 ms
53,128 KB
testcase_09 AC 43 ms
53,532 KB
testcase_10 AC 43 ms
52,352 KB
testcase_11 AC 44 ms
52,204 KB
testcase_12 AC 42 ms
52,932 KB
testcase_13 AC 45 ms
53,000 KB
testcase_14 AC 45 ms
52,380 KB
testcase_15 AC 46 ms
52,972 KB
testcase_16 AC 46 ms
52,616 KB
testcase_17 AC 44 ms
52,128 KB
testcase_18 AC 42 ms
52,208 KB
testcase_19 AC 44 ms
53,808 KB
testcase_20 AC 43 ms
52,408 KB
testcase_21 AC 42 ms
53,696 KB
testcase_22 AC 41 ms
52,828 KB
testcase_23 AC 43 ms
52,736 KB
testcase_24 AC 42 ms
52,140 KB
testcase_25 AC 42 ms
53,056 KB
testcase_26 AC 43 ms
53,132 KB
testcase_27 AC 45 ms
53,164 KB
testcase_28 AC 43 ms
52,212 KB
testcase_29 AC 44 ms
52,280 KB
testcase_30 AC 44 ms
52,488 KB
testcase_31 AC 43 ms
52,768 KB
testcase_32 AC 43 ms
52,672 KB
testcase_33 AC 43 ms
52,832 KB
testcase_34 AC 41 ms
52,856 KB
testcase_35 AC 43 ms
52,624 KB
testcase_36 AC 43 ms
52,128 KB
testcase_37 AC 43 ms
53,532 KB
testcase_38 AC 43 ms
52,000 KB
testcase_39 AC 45 ms
52,148 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