結果

問題 No.1462 最弱WEAKER
ユーザー 👑 tamatotamato
提出日時 2021-04-02 21:24:53
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 215 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 87,428 KB
実行使用メモリ 71,940 KB
最終ジャッジ日時 2023-08-25 11:22:32
合計ジャッジ時間 2,797 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,424 KB
testcase_01 AC 71 ms
71,556 KB
testcase_02 AC 68 ms
71,520 KB
testcase_03 AC 71 ms
71,648 KB
testcase_04 AC 71 ms
71,588 KB
testcase_05 AC 70 ms
71,780 KB
testcase_06 AC 69 ms
71,724 KB
testcase_07 AC 70 ms
71,684 KB
testcase_08 AC 69 ms
71,828 KB
testcase_09 AC 70 ms
71,696 KB
testcase_10 AC 69 ms
71,940 KB
testcase_11 AC 69 ms
71,940 KB
testcase_12 AC 68 ms
71,524 KB
testcase_13 AC 69 ms
71,744 KB
testcase_14 AC 71 ms
71,588 KB
testcase_15 AC 70 ms
71,740 KB
testcase_16 AC 68 ms
71,468 KB
testcase_17 AC 68 ms
71,756 KB
testcase_18 AC 71 ms
71,652 KB
testcase_19 AC 68 ms
71,816 KB
testcase_20 AC 69 ms
71,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    N = int(input())
    if N&1:
        print("NO")
    else:
        print("YES")


if __name__ == '__main__':
    main()
0