結果

問題 No.1040 垂直大学
ユーザー deepjugglingdeepjuggling
提出日時 2023-01-26 07:14:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,828 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-06-27 05:10:33
合計ジャッジ時間 2,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,760 KB
testcase_01 WA -
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 39 ms
52,084 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 39 ms
52,264 KB
testcase_06 AC 38 ms
52,304 KB
testcase_07 AC 38 ms
52,212 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,616 KB
testcase_11 AC 38 ms
53,040 KB
testcase_12 AC 38 ms
51,876 KB
testcase_13 AC 38 ms
52,136 KB
testcase_14 AC 37 ms
52,084 KB
testcase_15 AC 37 ms
52,844 KB
testcase_16 AC 37 ms
52,344 KB
testcase_17 AC 39 ms
52,204 KB
testcase_18 AC 38 ms
52,188 KB
testcase_19 AC 37 ms
52,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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