結果

問題 No.1979 [Cherry 4th Tune A] I min !
ユーザー shoshoshom
提出日時 2022-06-17 21:21:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 1,489 ms
コンパイル使用メモリ 164,596 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 06:47:16
合計ジャッジ時間 2,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

static inline void solve() {
  int i, j, k;
  cin >> i >> j >> k;
  cout << (i <= j && i <= k ? "Yes" : "No") << '\n';

}

int main() {
  ios_base::sync_with_stdio(0), cin.tie(0);
#ifdef LOCAL
  int T;
  cin >> T;
  for (int tc = 1; tc <= T; tc++) {
    cout << "Case" << tc << ":" << '\n';
    solve();
  }
#else
  solve();
#endif
  return 0;
}
0