結果

問題 No.2371 最大の試練それは起床
ユーザー KoseTKoseT
提出日時 2023-07-07 21:22:52
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 2,242 ms
コンパイル使用メモリ 202,928 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-21 17:02:46
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#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";
  }
}
0