結果
| 問題 | No.1149 色塗りゲーム |
| コンテスト | |
| ユーザー |
ntuda
|
| 提出日時 | 2024-12-30 19:27:11 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 184 bytes |
| 記録 | |
| コンパイル時間 | 799 ms |
| コンパイル使用メモリ | 85,376 KB |
| 実行使用メモリ | 85,272 KB |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2026-06-04 08:01:20 |
| 合計ジャッジ時間 | 9,349 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 50 |
ソースコード
N = int(input())
if N % 2 == 0:
print(2, N//2 - 1)
else:
print(1, N//2)
t = 3
while t == 3:
k,x = map(int,input().split())
print(k, N + 2 - x - k)
t = int(input())
ntuda