結果
| 問題 |
No.1926 Sequence of Remainders
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-09 14:48:10 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 215 bytes |
| コンパイル時間 | 243 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-07-16 13:03:57 |
| 合計ジャッジ時間 | 3,456 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / 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-1]%i-1)