結果
| 問題 | No.2450 99-like Number |
| コンテスト | |
| ユーザー |
northward
|
| 提出日時 | 2023-09-01 21:27:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 2,000 ms |
| + 204µs | |
| コード長 | 120 bytes |
| 記録 | |
| コンパイル時間 | 295 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,868 KB |
| 最終ジャッジ日時 | 2026-07-19 20:01:48 |
| 合計ジャッジ時間 | 3,702 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
n = input()
c = 0
for x in n:
if x == "9":
c += 1
if c == len(n):
print("Yes")
else:
print("No")
northward