結果
問題 | No.249 N言っちゃダメゲーム (2) |
ユーザー | tcltk |
提出日時 | 2021-01-21 05:08:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 758 bytes |
コンパイル時間 | 209 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-06-06 11:36:14 |
合計ジャッジ時間 | 1,032 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | WA | - |
ソースコード
#region Header #!/usr/bin/env python3 # from typing import * import sys import io import math import collections import decimal import itertools from queue import PriorityQueue import bisect import heapq def input(): return sys.stdin.readline()[:-1] sys.setrecursionlimit(1000000) #endregion # _INPUT = """# paste here... # """ # sys.stdin = io.StringIO(_INPUT) def main(): n = 0 first_move = True for _ in range(1000): N, K = map(int, input().split()) if first_move: if (N-1) % (K-1) == 0: n += 1 first_move = False else: if (N-1) % (K-1) != 0: n += 1 first_move = True print(n) if __name__ == '__main__': main()