結果
| 問題 |
No.2371 最大の試練それは起床
|
| コンテスト | |
| ユーザー |
Ojoxux
|
| 提出日時 | 2023-08-14 15:22:01 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 247 bytes |
| コンパイル時間 | 579 ms |
| コンパイル使用メモリ | 67,440 KB |
| 最終ジャッジ日時 | 2025-02-16 08:04:09 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#include<iostream>
#include<vector>
#include<cassert>
using namespace std;
int h,m;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin>>h>>m;
int a=h*60+m;
if(a<450) cout<<"Yes";
else if(a<510) cout<<"Late";
else cout<<"No";
}
Ojoxux