結果
| 問題 | No.2450 99-like Number |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2023-10-15 00:33:52 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 408 bytes |
| 記録 | |
| コンパイル時間 | 1,647 ms |
| コンパイル使用メモリ | 194,988 KB |
| 実行使用メモリ | 7,848 KB |
| 最終ジャッジ日時 | 2025-12-26 12:08:15 |
| 合計ジャッジ時間 | 2,482 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "settings/debug.cpp"
#define _GLIBCXX_DEBUG
#else
#define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
string s;
cin >> s;
bool ok = true;
rep(i, s.size()) ok &= (s[i] == '9');
cout << (ok ? "Yes" : "No") << endl;
return 0;
}
a01sa01to