結果

問題 No.1198 お菓子配り-1
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-29 21:28:33
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 55 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 86,356 KB
実行使用メモリ 71,116 KB
最終ジャッジ日時 2023-09-08 06:39:28
合計ジャッジ時間 2,539 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
70,632 KB
testcase_01 AC 67 ms
70,636 KB
testcase_02 AC 67 ms
71,032 KB
testcase_03 AC 66 ms
71,028 KB
testcase_04 AC 70 ms
71,036 KB
testcase_05 AC 68 ms
70,660 KB
testcase_06 AC 68 ms
70,796 KB
testcase_07 AC 68 ms
70,636 KB
testcase_08 AC 69 ms
70,552 KB
testcase_09 AC 68 ms
70,932 KB
testcase_10 AC 69 ms
70,544 KB
testcase_11 AC 70 ms
70,976 KB
testcase_12 AC 68 ms
71,064 KB
testcase_13 AC 67 ms
70,872 KB
testcase_14 AC 68 ms
70,936 KB
testcase_15 AC 69 ms
71,116 KB
testcase_16 WA -
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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