結果

問題 No.1040 垂直大学
ユーザー splash9494splash9494
提出日時 2020-05-04 00:33:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 72 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 86,676 KB
実行使用メモリ 71,160 KB
最終ジャッジ日時 2023-09-05 10:29:21
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
70,944 KB
testcase_01 AC 74 ms
70,856 KB
testcase_02 AC 75 ms
71,076 KB
testcase_03 AC 75 ms
70,912 KB
testcase_04 AC 75 ms
71,160 KB
testcase_05 AC 74 ms
70,884 KB
testcase_06 AC 73 ms
71,076 KB
testcase_07 AC 75 ms
70,840 KB
testcase_08 AC 75 ms
70,788 KB
testcase_09 AC 74 ms
70,844 KB
testcase_10 AC 75 ms
71,080 KB
testcase_11 AC 75 ms
70,996 KB
testcase_12 AC 74 ms
70,796 KB
testcase_13 AC 74 ms
70,892 KB
testcase_14 AC 73 ms
70,800 KB
testcase_15 AC 74 ms
70,880 KB
testcase_16 AC 75 ms
70,948 KB
testcase_17 AC 73 ms
71,148 KB
testcase_18 AC 74 ms
70,768 KB
testcase_19 AC 74 ms
71,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

print('Yes' if N % 90 == 0 and N % 180 != 0 else 'No')
0