結果
問題 |
No.1926 Sequence of Remainders
|
ユーザー |
|
提出日時 | 2022-05-09 14:53:53 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 217 bytes |
コンパイル時間 | 122 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-16 13:08:51 |
合計ジャッジ時間 | 2,957 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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(lists) else: print(lists[i]%M-i)