結果

問題 No.1040 垂直大学
ユーザー fusmafusma
提出日時 2020-05-20 16:06:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 60 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 53,832 KB
最終ジャッジ日時 2024-04-09 22:59:02
合計ジャッジ時間 1,874 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,752 KB
testcase_01 AC 38 ms
52,048 KB
testcase_02 AC 36 ms
52,868 KB
testcase_03 AC 35 ms
52,680 KB
testcase_04 AC 35 ms
51,756 KB
testcase_05 AC 36 ms
53,832 KB
testcase_06 AC 36 ms
52,344 KB
testcase_07 AC 36 ms
53,216 KB
testcase_08 AC 35 ms
52,928 KB
testcase_09 AC 36 ms
51,868 KB
testcase_10 AC 35 ms
52,084 KB
testcase_11 AC 36 ms
52,012 KB
testcase_12 AC 37 ms
52,628 KB
testcase_13 AC 36 ms
52,220 KB
testcase_14 AC 36 ms
52,284 KB
testcase_15 AC 35 ms
52,064 KB
testcase_16 AC 35 ms
52,600 KB
testcase_17 AC 36 ms
52,948 KB
testcase_18 AC 36 ms
53,340 KB
testcase_19 AC 34 ms
52,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print("Yes"if N%180 and not N%90 else "No")
0