結果
問題 |
No.908 うしたぷにきあくん文字列
|
ユーザー |
![]() |
提出日時 | 2019-11-06 19:11:23 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 694 ms |
コンパイル使用メモリ | 66,576 KB |
最終ジャッジ日時 | 2025-01-08 02:22:11 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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 << "Yes" << endl; } else { cout << "No" << endl; } return 0; }