結果
| 問題 | No.1198 お菓子配り-1 |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-05-11 02:49:46 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 36 ms / 2,000 ms |
| コード長 | 74 bytes |
| 記録 | |
| コンパイル時間 | 107 ms |
| コンパイル使用メモリ | 85,336 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2026-04-09 15:45:01 |
| 合計ジャッジ時間 | 1,609 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 14 |
ソースコード
n = int(input()) print(1 if (n%2 and n > 1) or (n%4==0 and n > 4) else -1)
convexineq