結果
| 問題 |
No.1198 お菓子配り-1
|
| コンテスト | |
| ユーザー |
👑 SPD_9X2
|
| 提出日時 | 2020-08-28 21:40:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 39 ms / 2,000 ms |
| コード長 | 105 bytes |
| コンパイル時間 | 150 ms |
| コンパイル使用メモリ | 82,444 KB |
| 実行使用メモリ | 51,968 KB |
| 最終ジャッジ日時 | 2024-11-16 09:19:54 |
| 合計ジャッジ時間 | 1,412 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
N = int(input())
if N != 1 and N != 4 and ( N % 4 == 0 or N % 2 == 1):
print (1)
else:
print (-1)
SPD_9X2