結果
| 問題 | No.1004 サイコロの実装 (2) |
| コンテスト | |
| ユーザー |
googol_S0
|
| 提出日時 | 2020-03-06 21:47:00 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 184 bytes |
| 記録 | |
| コンパイル時間 | 413 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 20,760 KB |
| 最終ジャッジ日時 | 2026-05-01 15:41:50 |
| 合計ジャッジ時間 | 10,166 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 38 |
ソースコード
a,b,x,n=map(int,input().split()) L=[x] for i in range(4): L.append((L[-1]*a)+b) y=0 z=0 if not(L[0]%2==0 and L[2]%2==0): y=N//2 if not(L[1]%2==0 and L[3]%2==0): z=N//2 print(y,z)
googol_S0