結果
| 問題 |
No.1672 404 Not Found
|
| コンテスト | |
| ユーザー |
planes
|
| 提出日時 | 2021-09-10 21:21:54 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 344 bytes |
| コンパイル時間 | 1,838 ms |
| コンパイル使用メモリ | 193,248 KB |
| 最終ジャッジ日時 | 2025-01-24 09:25:46 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
#define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)
int main() {
ios_base::sync_with_stdio(0); cin.tie(0);
string S;cin>>S;
ll k=S[0]-'0';
if(k==4||k==5) {
cout<<"Yes"<<endl;
}
else cout<<"No"<<endl;
}
planes