結果
問題 | No.1979 [Cherry 4th Tune A] I min ! |
ユーザー |
![]() |
提出日時 | 2022-06-17 21:34:09 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 272 bytes |
コンパイル時間 | 4,344 ms |
コンパイル使用メモリ | 259,936 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-09 07:06:33 |
合計ジャッジ時間 | 5,205 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int A,B,C; cin>>A>>B>>C; if(A <= B && A <= C) cout<<"Yes"<<endl; else cout<<"No"<<endl; }