結果
| 問題 |
No.2450 99-like Number
|
| コンテスト | |
| ユーザー |
eve__fuyuki
|
| 提出日時 | 2023-09-05 09:34:31 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 316 bytes |
| コンパイル時間 | 1,550 ms |
| コンパイル使用メモリ | 192,684 KB |
| 最終ジャッジ日時 | 2025-02-16 18:43:06 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 18 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
void fast_io() {
ios_base::sync_with_stdio(false);
cin.tie(0);
}
int main() {
fast_io();
string n;
cin >> n;
if (all_of(n.begin(), n.end(), [](char x) { return x == '9'; })) {
cout << "Yes\n";
} else {
cout << "No\n";
}
}
eve__fuyuki