結果
| 問題 |
No.558 575検出するやつ
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-12-13 13:52:45 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 160 bytes |
| コンパイル時間 | 2,295 ms |
| コンパイル使用メモリ | 165,464 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-09-27 05:21:22 |
| 合計ジャッジ時間 | 2,933 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 WA * 2 |
| other | AC * 8 WA * 7 |
ソースコード
using namespace std;
#include <bits/stdc++.h>
int main(){
string S;
cin >> S;
if(S == "575"){
cout << "YES" << endl;
}else{
cout << "NO" << endl;
}
}