結果

問題 No.1040 垂直大学
ユーザー EvolMaxEvolMax
提出日時 2020-09-14 20:53:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 72 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 87,092 KB
実行使用メモリ 71,632 KB
最終ジャッジ日時 2023-09-04 00:47:55
合計ジャッジ時間 2,868 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 69 ms
71,440 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 69 ms
71,432 KB
testcase_08 AC 68 ms
71,268 KB
testcase_09 AC 69 ms
71,400 KB
testcase_10 AC 68 ms
71,312 KB
testcase_11 AC 69 ms
71,404 KB
testcase_12 AC 69 ms
71,536 KB
testcase_13 AC 69 ms
71,284 KB
testcase_14 AC 71 ms
71,288 KB
testcase_15 AC 68 ms
71,632 KB
testcase_16 AC 67 ms
71,620 KB
testcase_17 AC 68 ms
71,372 KB
testcase_18 AC 68 ms
71,440 KB
testcase_19 AC 69 ms
71,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a = int(input())

if a%180 == 90:
    print("YES")
else:
    print("No")
0