結果
問題 |
No.558 575検出するやつ
|
ユーザー |
|
提出日時 | 2025-06-16 02:22:09 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 512 bytes |
コンパイル時間 | 3,140 ms |
コンパイル使用メモリ | 278,412 KB |
実行使用メモリ | 7,848 KB |
最終ジャッジ日時 | 2025-06-16 02:22:14 |
合計ジャッジ時間 | 4,508 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 5 |
other | WA * 15 |
ソースコード
#include <bits/stdc++.h> using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// string s; cin >> s; //////////////// 出力変数定義 //////////////// string result = "No"; //////////////////// 処理 //////////////////// if (s.contains("575")) result = "Yes"; //////////////////// 出力 //////////////////// cout << result << endl; //////////////////// 終了 //////////////////// return 0; }