結果

問題 No.1672 404 Not Found
ユーザー 👑 tamatotamato
提出日時 2021-09-10 21:21:18
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 246 bytes
コンパイル時間 1,791 ms
コンパイル使用メモリ 87,092 KB
実行使用メモリ 71,900 KB
最終ジャッジ日時 2023-09-02 15:38:14
合計ジャッジ時間 2,618 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
71,340 KB
testcase_01 AC 79 ms
71,692 KB
testcase_02 AC 79 ms
71,688 KB
testcase_03 AC 78 ms
71,756 KB
testcase_04 AC 78 ms
71,552 KB
testcase_05 AC 78 ms
71,288 KB
testcase_06 AC 77 ms
71,684 KB
testcase_07 AC 79 ms
71,768 KB
testcase_08 AC 78 ms
71,696 KB
testcase_09 AC 77 ms
71,864 KB
testcase_10 AC 78 ms
71,900 KB
testcase_11 AC 77 ms
71,604 KB
testcase_12 AC 76 ms
71,456 KB
testcase_13 AC 77 ms
71,760 KB
testcase_14 AC 77 ms
71,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


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

    S = input().rstrip('\n')
    if S[0] == "4" or S[0] == "5":
        print("Yes")
    else:
        print("No")


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