結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | beet |
提出日時 | 2018-07-23 16:34:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 329 bytes |
コンパイル時間 | 330 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-06-09 09:09:17 |
合計ジャッジ時間 | 729 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
ソースコード
T = 1000 f = True ans = 0 for t in range(T): n, k = map(int, input().split()) x = (n-1) % (k+1) != 0 if f: if x: ans += 1 f = False else: f = True else: if not x: ans += 1 f = False else: f = True print(ans)