結果
| 問題 |
No.908 うしたぷにきあくん文字列
|
| コンテスト | |
| ユーザー |
oioi92755
|
| 提出日時 | 2019-11-06 19:07:32 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 254 bytes |
| コンパイル時間 | 452 ms |
| コンパイル使用メモリ | 55,612 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-15 00:21:43 |
| 合計ジャッジ時間 | 1,220 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 12 WA * 6 |
ソースコード
#include <iostream>
#include <string>
using namespace std;
int main(){
string S;
cin >> S;
if(S != "u s h i t a p u n i c h i a k u n"){
cout << "No" << endl;
}
else {
cout << "Yes" << endl;
}
return 0;
}
oioi92755