結果
問題 | No.1004 サイコロの実装 (2) |
ユーザー | ryo_n |
提出日時 | 2020-03-06 23:13:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 647 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 81,764 KB |
実行使用メモリ | 81,632 KB |
最終ジャッジ日時 | 2024-10-14 09:43:15 |
合計ジャッジ時間 | 5,144 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
56,960 KB |
testcase_01 | AC | 39 ms
51,584 KB |
testcase_02 | AC | 38 ms
51,712 KB |
testcase_03 | AC | 39 ms
51,712 KB |
testcase_04 | AC | 39 ms
51,968 KB |
testcase_05 | AC | 40 ms
52,224 KB |
testcase_06 | WA | - |
testcase_07 | AC | 38 ms
52,224 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 39 ms
51,712 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
import sys sys.setrecursionlimit(10 ** 8) input = sys.stdin.readline def main(): A, B, X, N = [int(x) for x in input().split()] M = 6 prev = X prev = X t = 0 a = 0 tw = 0 tb = 0 aw = 0 ab = 0 for i in range(N * 2): prev = (prev * A + B) % M + 1 if i % 2 == 0: t += prev if t % 2 == 0: tb += 1 else: tw += 1 else: a += prev if a % 2 == 0: ab += 1 else: aw += 1 print(min(tw, tb), min(aw, ab)) if __name__ == '__main__': main()