結果
| 問題 | No.2607 Add One Digit |
| コンテスト | |
| ユーザー |
vwxyz
|
| 提出日時 | 2024-02-09 02:24:58 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 93 ms / 1,000 ms |
| + 201µs | |
| コード長 | 179 bytes |
| 記録 | |
| コンパイル時間 | 285 ms |
| コンパイル使用メモリ | 21,464 KB |
| 実行使用メモリ | 15,792 KB |
| 最終ジャッジ日時 | 2026-09-05 16:17:40 |
| 合計ジャッジ時間 | 3,741 ms |
|
ジャッジサーバーID (参考情報) |
judge5_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
ソースコード
N=input()
le=len(N)
se=set()
for i in range(le+1):
for n in range(10):
if i==0 and n==0:
continue
se.add(N[:i]+str(n)+N[i:])
ans=len(se)
print(ans)
vwxyz