結果

問題 No.1004 サイコロの実装 (2)
ユーザー liny_tailliny_tail
提出日時 2023-01-04 19:38:33
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-27 23:21:48
合計ジャッジ時間 2,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
class calc():
  def __init__(self, a, b, x):
    self.m = 2 ** 32
    self.a = a
    self.b = b
    self.x = x
  
  def next(self):
    self.x = (self.a * self.x + self.b) % self.m
    #return (self.x % 6) + 1
    return (self.x) + 1

a, b, x, N = map(int, input().strip().split(' '))

C = calc(a, b, x)

T, A = 0,0 
lst1 = [0,0]
lst2 = [0,0]

for i in range(N):
  T += C.next()
  lst1[T % 2] += 1
  A += C.next()
  lst2[A % 2] += 1

print('{} {}'.format(min(lst1), min(lst2)))
'''

a, b, x, N = map(int, input().strip().split(' '))

if x % 2 == 1:
  print('{} {}'.format(N // 2, 0))
else:
  print('{} {}'.format(0, N // 2))
0