結果

問題 No.1149 色塗りゲーム
ユーザー marroncastlemarroncastle
提出日時 2020-10-12 05:07:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 70,472 KB
平均クエリ数 19.82
最終ジャッジ日時 2024-07-17 07:07:59
合計ジャッジ時間 9,997 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
68,884 KB
testcase_01 AC 105 ms
68,892 KB
testcase_02 AC 104 ms
69,224 KB
testcase_03 AC 104 ms
69,664 KB
testcase_04 AC 104 ms
67,852 KB
testcase_05 AC 101 ms
69,420 KB
testcase_06 AC 103 ms
68,900 KB
testcase_07 AC 100 ms
69,108 KB
testcase_08 AC 95 ms
69,240 KB
testcase_09 AC 99 ms
68,908 KB
testcase_10 AC 101 ms
68,752 KB
testcase_11 AC 102 ms
68,836 KB
testcase_12 AC 101 ms
69,856 KB
testcase_13 AC 99 ms
69,252 KB
testcase_14 AC 103 ms
68,676 KB
testcase_15 AC 103 ms
68,672 KB
testcase_16 AC 109 ms
68,548 KB
testcase_17 AC 109 ms
69,168 KB
testcase_18 AC 110 ms
70,088 KB
testcase_19 AC 110 ms
68,932 KB
testcase_20 AC 105 ms
68,816 KB
testcase_21 AC 100 ms
69,848 KB
testcase_22 AC 105 ms
68,664 KB
testcase_23 AC 112 ms
69,136 KB
testcase_24 AC 102 ms
69,572 KB
testcase_25 AC 103 ms
68,488 KB
testcase_26 AC 104 ms
69,304 KB
testcase_27 AC 103 ms
68,540 KB
testcase_28 AC 105 ms
68,348 KB
testcase_29 AC 107 ms
68,232 KB
testcase_30 AC 156 ms
69,344 KB
testcase_31 AC 146 ms
69,184 KB
testcase_32 AC 153 ms
69,364 KB
testcase_33 AC 150 ms
68,684 KB
testcase_34 AC 154 ms
69,980 KB
testcase_35 AC 151 ms
68,948 KB
testcase_36 AC 158 ms
69,736 KB
testcase_37 AC 161 ms
68,980 KB
testcase_38 AC 166 ms
69,364 KB
testcase_39 AC 178 ms
69,144 KB
testcase_40 AC 181 ms
68,948 KB
testcase_41 AC 173 ms
70,472 KB
testcase_42 AC 171 ms
69,516 KB
testcase_43 AC 175 ms
69,000 KB
testcase_44 AC 186 ms
69,000 KB
testcase_45 AC 186 ms
69,540 KB
testcase_46 AC 183 ms
69,468 KB
testcase_47 AC 187 ms
69,640 KB
testcase_48 AC 184 ms
69,852 KB
testcase_49 AC 189 ms
69,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N%2==1:
  print(1,(N+1)//2)
else:
  print(2,N//2)
s = int(input())
while s==3:
  a, b = map(int, input().split())
  print(a,N+1-b-(a-1))
  s = int(input())
0