結果
| 問題 |
No.1198 お菓子配り-1
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-05-11 02:49:46 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 42 ms / 2,000 ms |
| コード長 | 74 bytes |
| コンパイル時間 | 307 ms |
| コンパイル使用メモリ | 82,228 KB |
| 実行使用メモリ | 53,584 KB |
| 最終ジャッジ日時 | 2024-09-21 08:53:59 |
| 合計ジャッジ時間 | 1,727 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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