結果

問題 No.1040 垂直大学
ユーザー splash9494splash9494
提出日時 2020-05-04 00:28:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 54 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 87,144 KB
実行使用メモリ 71,612 KB
最終ジャッジ日時 2023-09-05 10:22:03
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
71,180 KB
testcase_01 WA -
testcase_02 AC 78 ms
71,540 KB
testcase_03 AC 78 ms
71,560 KB
testcase_04 AC 78 ms
71,124 KB
testcase_05 AC 78 ms
71,124 KB
testcase_06 AC 79 ms
71,612 KB
testcase_07 AC 77 ms
71,412 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 77 ms
71,556 KB
testcase_11 AC 77 ms
71,132 KB
testcase_12 AC 78 ms
71,336 KB
testcase_13 AC 75 ms
71,288 KB
testcase_14 AC 78 ms
71,212 KB
testcase_15 AC 78 ms
71,320 KB
testcase_16 AC 78 ms
71,384 KB
testcase_17 AC 77 ms
71,400 KB
testcase_18 AC 78 ms
71,360 KB
testcase_19 AC 77 ms
71,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print('Yes' if N % 90 == 0 else 'No')
0