結果
| 問題 | 
                            No.1979 [Cherry 4th Tune A] I min !
                             | 
                    
| コンテスト | |
| ユーザー | 
                             mmn15277198
                         | 
                    
| 提出日時 | 2022-06-18 11:15:16 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 345 bytes | 
| コンパイル時間 | 821 ms | 
| コンパイル使用メモリ | 92,212 KB | 
| 実行使用メモリ | 6,820 KB | 
| 最終ジャッジ日時 | 2024-10-09 22:17:13 | 
| 合計ジャッジ時間 | 1,656 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 24 | 
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
#include <queue>
#include <map>
#include <cmath>
#include <iomanip>
#include <set>
#include <cstdio>
#include <string>
using namespace std;
int main() {
  long long a, b, c;
  cin >> a >> b >> c;
  cout << (a <= b && a <= c ? "Yes" : "No") << endl;
  return 0;
}
            
            
            
        
            
mmn15277198