結果
問題 |
No.2450 99-like Number
|
ユーザー |
|
提出日時 | 2025-07-14 10:19:46 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 306 bytes |
コンパイル時間 | 3,063 ms |
コンパイル使用メモリ | 275,784 KB |
実行使用メモリ | 7,844 KB |
最終ジャッジ日時 | 2025-07-14 10:19:51 |
合計ジャッジ時間 | 4,229 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <bits/stdc++.h> using namespace std; // #include <atcoder/all> // using namespace atcoder; using ll = long long; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); string s;cin>>s; for(auto& x:s) {if(x!='9') {cout << "No" <<endl; return 0;}} cout << "Yes" << endl; }