結果
問題 |
No.1198 お菓子配り-1
|
ユーザー |
👑 ![]() |
提出日時 | 2020-08-28 21:39:43 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 94 bytes |
コンパイル時間 | 152 ms |
コンパイル使用メモリ | 82,792 KB |
実行使用メモリ | 53,584 KB |
最終ジャッジ日時 | 2024-11-14 00:02:25 |
合計ジャッジ時間 | 1,454 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 13 WA * 1 |
ソースコード
N = int(input()) if N != 1 and ( N % 4 == 0 or N % 2 == 1): print (1) else: print (-1)