結果

問題 No.1149 色塗りゲーム
ユーザー SoratopSoratop
提出日時 2020-08-08 21:33:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 188 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 27,744 KB
平均クエリ数 13.98
最終ジャッジ日時 2024-07-17 05:41:28
合計ジャッジ時間 7,939 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 89 ms
27,360 KB
testcase_02 RE -
testcase_03 AC 88 ms
27,352 KB
testcase_04 WA -
testcase_05 AC 86 ms
27,488 KB
testcase_06 RE -
testcase_07 AC 86 ms
26,848 KB
testcase_08 WA -
testcase_09 AC 87 ms
26,848 KB
testcase_10 AC 89 ms
27,104 KB
testcase_11 WA -
testcase_12 AC 88 ms
27,360 KB
testcase_13 WA -
testcase_14 AC 88 ms
26,976 KB
testcase_15 WA -
testcase_16 AC 89 ms
27,232 KB
testcase_17 WA -
testcase_18 AC 89 ms
27,232 KB
testcase_19 WA -
testcase_20 AC 92 ms
27,232 KB
testcase_21 WA -
testcase_22 AC 90 ms
27,488 KB
testcase_23 WA -
testcase_24 AC 91 ms
27,576 KB
testcase_25 WA -
testcase_26 AC 90 ms
27,104 KB
testcase_27 WA -
testcase_28 AC 92 ms
27,232 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 131 ms
27,232 KB
testcase_32 WA -
testcase_33 AC 139 ms
27,104 KB
testcase_34 WA -
testcase_35 AC 136 ms
27,232 KB
testcase_36 WA -
testcase_37 AC 150 ms
26,848 KB
testcase_38 WA -
testcase_39 AC 148 ms
27,360 KB
testcase_40 WA -
testcase_41 AC 152 ms
27,232 KB
testcase_42 WA -
testcase_43 AC 150 ms
26,976 KB
testcase_44 WA -
testcase_45 AC 160 ms
27,352 KB
testcase_46 WA -
testcase_47 AC 172 ms
27,232 KB
testcase_48 WA -
testcase_49 AC 177 ms
27,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
if n%2 == 1:
    print(1,n//2)
else:
    print(2,n//2)
while True:
    t = int(input())
    if t<=1:
        break
    k,x = map(int, input().split())
    print(k,n-x+2-k)
0