結果
| 問題 | No.1040 垂直大学 |
| コンテスト | |
| ユーザー |
nehan_der_thal
|
| 提出日時 | 2020-05-01 21:22:49 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 2,000 ms |
| コード長 | 93 bytes |
| 記録 | |
| コンパイル時間 | 826 ms |
| コンパイル使用メモリ | 84,992 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2026-05-30 16:12:25 |
| 合計ジャッジ時間 | 1,695 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
N, = map(int, input().split())
if N%360 in [90, 270]:
print("Yes")
else:
print("No")
nehan_der_thal