結果
| 問題 | No.2450 99-like Number |
| コンテスト | |
| ユーザー |
irohasu19_
|
| 提出日時 | 2023-09-01 21:51:25 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| + 667µs | |
| コード長 | 111 bytes |
| 記録 | |
| コンパイル時間 | 222 ms |
| コンパイル使用メモリ | 96,100 KB |
| 実行使用メモリ | 79,092 KB |
| 最終ジャッジ日時 | 2026-07-19 20:06:33 |
| 合計ジャッジ時間 | 2,740 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
import sys
n = input()
for i in range(len(n)):
if n[i]!='9':
print("No")
sys.exit()
print("Yes")
irohasu19_