結果
| 問題 | No.558 575検出するやつ |
| コンテスト | |
| ユーザー |
yamyam122
|
| 提出日時 | 2017-08-26 15:21:12 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 537 ms |
| コンパイル使用メモリ | 70,972 KB |
| 実行使用メモリ | 7,976 KB |
| 最終ジャッジ日時 | 2026-05-05 07:50:57 |
| 合計ジャッジ時間 | 4,218 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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