結果
| 問題 | No.1926 Sequence of Remainders |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-06 21:34:43 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 225 ms / 2,000 ms |
| + 884µs | |
| コード長 | 143 bytes |
| 記録 | |
| コンパイル時間 | 228 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 85,032 KB |
| 最終ジャッジ日時 | 2026-08-08 16:43:06 |
| 合計ジャッジ時間 | 12,169 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 |
| other | AC * 35 |
ソースコード
t = int(input())
for case in range(t):
n, m, k = map(int, input().split())
begin = k%m
print(0) if m-n <= begin else print(begin)