結果
問題 | No.1149 色塗りゲーム |
ユーザー |
👑 |
提出日時 | 2020-08-13 06:31:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 271 bytes |
コンパイル時間 | 79 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 27,896 KB |
平均クエリ数 | 2.80 |
最終ジャッジ日時 | 2024-07-17 05:48:01 |
合計ジャッジ時間 | 7,209 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | RE * 50 |
ソースコード
n = int(input()) if n % 2 == 1: print(1, n // 2) else: print(2, n // 2 - 1) while 1: t = int(input()) if t == 0: exit() k, x = map(int, input().split()) if k == 1: print(1, n - 1 - k) else: print(2 , n - 1 - k)