結果
| 問題 | No.257 N言っちゃダメゲーム (3) |
| コンテスト | |
| ユーザー |
lllllll88938494
|
| 提出日時 | 2023-05-08 20:25:07 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 177 bytes |
| 記録 | |
| コンパイル時間 | 327 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 140,288 KB |
| 最終ジャッジ日時 | 2026-05-20 00:31:59 |
| 合計ジャッジ時間 | 8,846 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 -- * 29 |
ソースコード
n,k = map(int,input().split())
if (n + 1)%(k+1) == 0:
print(0,flush=True)
t=int(input())
while t < n:
a=(k+1)-t%(k+1)
print(a,flush=True)
t = int(input())
lllllll88938494