結果

問題 No.994 ばらばらコイン
ユーザー mlihua09mlihua09
提出日時 2020-08-31 22:54:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 86,964 KB
実行使用メモリ 71,276 KB
最終ジャッジ日時 2023-08-10 18:02:37
合計ジャッジ時間 3,972 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
70,972 KB
testcase_01 AC 68 ms
71,024 KB
testcase_02 AC 70 ms
71,000 KB
testcase_03 AC 70 ms
71,276 KB
testcase_04 AC 71 ms
70,916 KB
testcase_05 AC 69 ms
71,144 KB
testcase_06 AC 68 ms
70,948 KB
testcase_07 AC 67 ms
71,124 KB
testcase_08 AC 69 ms
70,988 KB
testcase_09 AC 69 ms
70,988 KB
testcase_10 AC 67 ms
70,684 KB
testcase_11 AC 64 ms
71,064 KB
testcase_12 AC 64 ms
71,064 KB
testcase_13 AC 64 ms
70,988 KB
testcase_14 AC 69 ms
70,900 KB
testcase_15 AC 68 ms
71,068 KB
testcase_16 AC 67 ms
70,684 KB
testcase_17 AC 65 ms
70,984 KB
testcase_18 AC 65 ms
71,152 KB
testcase_19 AC 62 ms
70,816 KB
testcase_20 AC 67 ms
71,156 KB
testcase_21 AC 68 ms
70,848 KB
testcase_22 AC 66 ms
70,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, K = map(int, input().split())

if N < K:
    print(-1)
    
else:
    
    print(K - 1)
0