結果

問題 No.1198 お菓子配り-1
ユーザー neterukunneterukun
提出日時 2020-08-28 21:22:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 96 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-11-13 23:45:54
合計ジャッジ時間 1,528 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,076 KB
testcase_01 AC 35 ms
51,816 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
52,796 KB
testcase_04 AC 35 ms
52,348 KB
testcase_05 AC 36 ms
52,404 KB
testcase_06 AC 35 ms
52,052 KB
testcase_07 AC 35 ms
52,152 KB
testcase_08 AC 35 ms
52,212 KB
testcase_09 AC 35 ms
52,572 KB
testcase_10 AC 37 ms
52,612 KB
testcase_11 AC 35 ms
52,436 KB
testcase_12 AC 36 ms
52,616 KB
testcase_13 AC 36 ms
52,768 KB
testcase_14 AC 35 ms
52,092 KB
testcase_15 AC 35 ms
52,876 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())


if n % 4 == 0:
    print(1)
elif n % 2 == 1:
    print(1)
else:
    print(-1)
0