結果
問題 |
No.1926 Sequence of Remainders
|
ユーザー |
|
提出日時 | 2022-05-09 14:47:28 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 211 bytes |
コンパイル時間 | 266 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-07-16 13:03:13 |
合計ジャッジ時間 | 3,461 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 1 |
other | RE * 35 |
ソースコード
T = int(input()) lists = [] for i in range(T): N,M,K = map(int, input().split()) print(i) if i == 0: a_0 = K%M lists.append(a_0) print(a_0) else: print(lists[i]%i)