結果

問題 No.1040 垂直大学
ユーザー deepjugglingdeepjuggling
提出日時 2023-01-26 07:14:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 87 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 87,164 KB
実行使用メモリ 71,488 KB
最終ジャッジ日時 2023-09-09 12:05:14
合計ジャッジ時間 2,921 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,192 KB
testcase_01 WA -
testcase_02 AC 75 ms
71,004 KB
testcase_03 AC 72 ms
71,348 KB
testcase_04 AC 71 ms
71,108 KB
testcase_05 AC 71 ms
71,200 KB
testcase_06 AC 71 ms
71,320 KB
testcase_07 AC 71 ms
71,228 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 71 ms
71,392 KB
testcase_11 AC 71 ms
71,348 KB
testcase_12 AC 72 ms
71,488 KB
testcase_13 AC 70 ms
71,116 KB
testcase_14 AC 70 ms
71,228 KB
testcase_15 AC 72 ms
71,352 KB
testcase_16 AC 71 ms
70,984 KB
testcase_17 AC 72 ms
71,320 KB
testcase_18 AC 71 ms
71,364 KB
testcase_19 AC 71 ms
71,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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