結果
| 問題 |
No.1672 404 Not Found
|
| コンテスト | |
| ユーザー |
monnu
|
| 提出日時 | 2021-09-16 20:04:28 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 245 bytes |
| コンパイル時間 | 1,288 ms |
| コンパイル使用メモリ | 166,632 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-06-29 17:05:47 |
| 合計ジャッジ時間 | 1,908 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 8 WA * 4 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using Graph=vector<vector<int>>;
#define INF 1000000000
int main(){
string S;
cin>>S;
if(S[0]=='4'||S[0]=='t'){
cout<<"Yes"<<'\n';
}else{
cout<<"No"<<'\n';
}
}
monnu