結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
yamyam122
|
| 提出日時 | 2017-08-26 15:21:12 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 203 bytes |
| コンパイル時間 | 455 ms |
| コンパイル使用メモリ | 55,904 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-15 17:41:49 |
| 合計ジャッジ時間 | 1,155 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 WA * 1 |
| other | AC * 8 WA * 7 |
ソースコード
#include <iostream>
#include <string>
int main() {
std::string str;
std::getline(std::cin, str);
!(int)str.find("575") ? std::cout << "YES" << std::endl : std::cout << "NO" << std::endl;
return 0;
}
yamyam122