結果

問題 No.2371 最大の試練それは起床
ユーザー とろちゃとろちゃ
提出日時 2023-07-07 21:24:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 825 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 87,008 KB
実行使用メモリ 71,532 KB
最終ジャッジ日時 2023-09-28 22:20:26
合計ジャッジ時間 3,159 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
71,324 KB
testcase_01 AC 77 ms
71,292 KB
testcase_02 AC 80 ms
71,292 KB
testcase_03 AC 76 ms
71,408 KB
testcase_04 AC 77 ms
71,288 KB
testcase_05 AC 79 ms
71,220 KB
testcase_06 AC 77 ms
71,432 KB
testcase_07 AC 76 ms
71,448 KB
testcase_08 AC 76 ms
71,340 KB
testcase_09 AC 78 ms
71,296 KB
testcase_10 AC 79 ms
71,488 KB
testcase_11 AC 80 ms
71,288 KB
testcase_12 AC 79 ms
71,388 KB
testcase_13 AC 79 ms
71,256 KB
testcase_14 AC 79 ms
71,532 KB
testcase_15 AC 78 ms
71,288 KB
testcase_16 AC 77 ms
71,352 KB
testcase_17 AC 79 ms
71,296 KB
testcase_18 AC 79 ms
71,292 KB
testcase_19 AC 78 ms
71,132 KB
testcase_20 AC 78 ms
71,404 KB
testcase_21 AC 78 ms
71,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1")
# from bisect import *
# from collections import *
# from heapq import *
# from itertools import *
# from math import *
# from datetime import *
# from decimal import *  # PyPyだと遅い
# from string import ascii_lowercase,ascii_uppercase
# import numpy as np
import sys
import os

# sys.setrecursionlimit(10**6) # PyPyだと遅い
INF = 10**18
MOD = 998244353
# MOD = 10**9 + 7
isFile = os.path.exists("input.txt")
File = open("input.txt", "r", encoding="utf-8") if isFile else sys.stdin


def input():
    return File.readline()[:-1]


# ///////////////////////////////////////////////////////////////////////////


H, M = map(int, input().split())
time = H * 100 + M
if time < 730:
    print("Yes")
elif time >= 830:
    print("No")
else:
    print("Late")
0