結果

問題 No.1198 お菓子配り-1
ユーザー mlihua09mlihua09
提出日時 2020-08-28 21:25:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 87,288 KB
実行使用メモリ 71,616 KB
最終ジャッジ日時 2023-08-10 07:38:53
合計ジャッジ時間 2,460 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,364 KB
testcase_01 AC 69 ms
71,360 KB
testcase_02 AC 67 ms
71,356 KB
testcase_03 AC 67 ms
71,608 KB
testcase_04 AC 66 ms
71,400 KB
testcase_05 AC 67 ms
71,616 KB
testcase_06 AC 69 ms
71,352 KB
testcase_07 AC 67 ms
71,224 KB
testcase_08 AC 68 ms
71,464 KB
testcase_09 AC 67 ms
71,420 KB
testcase_10 AC 67 ms
71,560 KB
testcase_11 AC 71 ms
71,492 KB
testcase_12 AC 68 ms
71,360 KB
testcase_13 AC 68 ms
71,388 KB
testcase_14 AC 67 ms
71,472 KB
testcase_15 AC 65 ms
71,252 KB
testcase_16 AC 67 ms
71,188 KB
testcase_17 AC 67 ms
71,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

if N == 1 or N == 4 or N == 6 or N % 4 == 2:
    
    print(-1)
    
else:
    
    print(1)
0