結果

問題 No.1198 お菓子配り-1
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 21:25:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 78 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 87,036 KB
実行使用メモリ 71,476 KB
最終ジャッジ日時 2023-09-08 06:37:24
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
71,380 KB
testcase_01 AC 69 ms
71,352 KB
testcase_02 AC 69 ms
70,968 KB
testcase_03 AC 69 ms
71,240 KB
testcase_04 AC 67 ms
71,176 KB
testcase_05 AC 70 ms
71,412 KB
testcase_06 AC 69 ms
71,380 KB
testcase_07 AC 68 ms
71,360 KB
testcase_08 AC 68 ms
71,384 KB
testcase_09 AC 68 ms
71,312 KB
testcase_10 AC 70 ms
71,172 KB
testcase_11 AC 70 ms
71,476 KB
testcase_12 AC 69 ms
71,376 KB
testcase_13 AC 68 ms
71,184 KB
testcase_14 AC 69 ms
71,252 KB
testcase_15 AC 70 ms
71,316 KB
testcase_16 AC 70 ms
71,384 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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