結果
| 問題 | 
                            No.1149 色塗りゲーム
                             | 
                    
| コンテスト | |
| ユーザー | 
                             ntuda
                         | 
                    
| 提出日時 | 2024-12-30 19:31:59 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 184 bytes | 
| コンパイル時間 | 386 ms | 
| コンパイル使用メモリ | 82,304 KB | 
| 実行使用メモリ | 82,016 KB | 
| 平均クエリ数 | 1.00 | 
| 最終ジャッジ日時 | 2024-12-30 19:32:11 | 
| 合計ジャッジ時間 | 11,355 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | RE * 50 | 
ソースコード
N = int(input())
if N % 2 == 0:
    print(2, N//2)
else:
    print(1, N//2 + 1)
t = 3
while t == 3:
    k,x = map(int,input().split())
    print(k, N + 2 - x - k)
    t = int(input())
            
            
            
        
            
ntuda