結果

問題 No.558 575検出するやつ
ユーザー shimpei tsuji
提出日時 2017-11-28 23:39:03
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 55,952 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 13:18:09
合計ジャッジ時間 1,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 4
other AC * 7 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int main ()
{
  ios::sync_with_stdio(false);
  int n;
  string str;

  cin >> str;

  if (str.find("575")) {
    cout << "YES" << "\n";
  } else {
    cout << "NO" << "\n";
  }

  return 0;
}
0