結果
問題 | No.2450 99-like Number |
ユーザー | トミー |
提出日時 | 2023-12-15 00:55:28 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 223 bytes |
コンパイル時間 | 379 ms |
コンパイル使用メモリ | 27,776 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-27 05:52:20 |
合計ジャッジ時間 | 736 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 18 |
ソースコード
#include <stdio.h> #include <stdbool.h> int main(void){ int i; bool f=true; char N[101]; scanf("%s",N); while(N[i]!=0){ if (N[i]!='9'){ f=false; } i++; } if (f){ printf("Yes"); }else{ printf("No"); } }