結果

問題 No.531 エヌスクミ島の平和協定
ユーザー ああいいああいい
提出日時 2022-01-28 12:44:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 141 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 53,908 KB
最終ジャッジ日時 2024-06-09 04:48:21
合計ジャッジ時間 2,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
52,480 KB
testcase_02 AC 30 ms
52,460 KB
testcase_03 AC 29 ms
52,620 KB
testcase_04 AC 30 ms
52,336 KB
testcase_05 AC 29 ms
52,032 KB
testcase_06 AC 31 ms
52,428 KB
testcase_07 AC 29 ms
53,380 KB
testcase_08 AC 30 ms
52,800 KB
testcase_09 AC 30 ms
53,812 KB
testcase_10 WA -
testcase_11 AC 31 ms
53,572 KB
testcase_12 WA -
testcase_13 AC 31 ms
52,796 KB
testcase_14 AC 30 ms
52,488 KB
testcase_15 AC 29 ms
52,736 KB
testcase_16 AC 32 ms
52,772 KB
testcase_17 AC 30 ms
52,192 KB
testcase_18 WA -
testcase_19 AC 29 ms
53,160 KB
testcase_20 AC 29 ms
52,432 KB
testcase_21 AC 30 ms
52,528 KB
testcase_22 AC 29 ms
51,940 KB
testcase_23 AC 30 ms
52,400 KB
testcase_24 AC 29 ms
52,180 KB
testcase_25 AC 30 ms
53,292 KB
testcase_26 AC 30 ms
52,204 KB
testcase_27 AC 31 ms
52,072 KB
testcase_28 AC 32 ms
52,420 KB
testcase_29 AC 31 ms
52,276 KB
testcase_30 AC 30 ms
53,148 KB
testcase_31 AC 30 ms
52,204 KB
testcase_32 AC 30 ms
52,520 KB
testcase_33 AC 29 ms
52,764 KB
testcase_34 AC 30 ms
52,616 KB
testcase_35 AC 30 ms
52,368 KB
testcase_36 AC 31 ms
52,484 KB
testcase_37 AC 30 ms
52,948 KB
testcase_38 AC 31 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())

import sys
if n == 2:
    print(-1)
if n <= m:
    print(1)
elif n <= 2 * m:
    print(2)
else:
    print(-1)
0