結果
問題 | No.2371 最大の試練それは起床 |
ユーザー |
|
提出日時 | 2023-07-07 21:22:52 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 390 bytes |
コンパイル時間 | 1,975 ms |
コンパイル使用メモリ | 195,224 KB |
最終ジャッジ日時 | 2025-02-15 06:41:26 |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 19 |
ソースコード
#include <bits/stdc++.h>using namespace std;int main() {ios::sync_with_stdio(false);cin.tie(0);pair<int, int> a;cin >> a.first >> a.second;vector<pair<int, int>> se(2);se[0].first = 7; se[0].second = 30;se[1].first = 8; se[1].second = 30;if (a < se[0]) {cout << "Yes\n";} else if (a < se[1]) {cout << "Late\n";} else {cout << "No\n";}}