結果
問題 | No.2371 最大の試練それは起床 |
ユーザー |
|
提出日時 | 2023-07-09 14:23:11 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 1,432 ms |
コンパイル使用メモリ | 166,388 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-23 11:18:55 |
合計ジャッジ時間 | 2,261 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {cin.tie(0);ios::sync_with_stdio(false);int H,M;cin >> H >> M;if(H==7 && M<30) cout << "Yes";else if(H<7) cout << "Yes";else if(H>8) cout << "No";else if(H==8 && M>=30) cout << "No";else cout << "Late";return 0;}