結果

問題 No.1198 お菓子配り-1
ユーザー penguinman
提出日時 2020-11-01 01:21:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 61 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 53,656 KB
最終ジャッジ日時 2024-07-22 05:33:33
合計ジャッジ時間 1,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 13 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=1
if N%4==2 or N==1:
    ans=-1
print(ans)
0