結果

問題 No.1040 垂直大学
ユーザー miya145592miya145592
提出日時 2023-05-01 02:00:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 85 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 53,292 KB
最終ジャッジ日時 2024-04-30 07:18:02
合計ジャッジ時間 2,044 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,700 KB
testcase_01 AC 37 ms
52,812 KB
testcase_02 AC 36 ms
52,580 KB
testcase_03 AC 36 ms
52,776 KB
testcase_04 AC 36 ms
52,908 KB
testcase_05 AC 36 ms
52,800 KB
testcase_06 AC 37 ms
52,192 KB
testcase_07 AC 39 ms
53,008 KB
testcase_08 AC 37 ms
51,996 KB
testcase_09 AC 36 ms
51,904 KB
testcase_10 AC 37 ms
53,292 KB
testcase_11 AC 37 ms
51,904 KB
testcase_12 AC 37 ms
52,864 KB
testcase_13 AC 37 ms
53,044 KB
testcase_14 AC 37 ms
51,836 KB
testcase_15 AC 37 ms
52,424 KB
testcase_16 AC 37 ms
52,892 KB
testcase_17 AC 37 ms
52,248 KB
testcase_18 AC 37 ms
52,072 KB
testcase_19 AC 36 ms
52,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
n = N%360
if n==90 or n==270:
    print("Yes")
else:
    print("No")
0