結果

問題 No.1040 垂直大学
ユーザー roarisroaris
提出日時 2020-05-01 21:22:10
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 1,157 ms
コンパイル使用メモリ 86,604 KB
実行使用メモリ 71,664 KB
最終ジャッジ日時 2023-08-26 06:26:13
合計ジャッジ時間 3,311 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
71,580 KB
testcase_01 AC 89 ms
71,608 KB
testcase_02 AC 89 ms
71,132 KB
testcase_03 AC 89 ms
71,600 KB
testcase_04 AC 89 ms
71,496 KB
testcase_05 AC 89 ms
71,664 KB
testcase_06 AC 92 ms
71,516 KB
testcase_07 AC 90 ms
71,532 KB
testcase_08 AC 89 ms
71,596 KB
testcase_09 AC 90 ms
71,136 KB
testcase_10 AC 90 ms
71,468 KB
testcase_11 AC 90 ms
71,536 KB
testcase_12 AC 89 ms
71,580 KB
testcase_13 AC 90 ms
71,532 KB
testcase_14 AC 89 ms
71,596 KB
testcase_15 AC 89 ms
71,396 KB
testcase_16 AC 88 ms
71,444 KB
testcase_17 AC 88 ms
71,328 KB
testcase_18 AC 89 ms
71,592 KB
testcase_19 AC 90 ms
71,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())

if N%90==0 and (N//90)%2==1:
    print('Yes')
else:
    print('No')
0