結果
問題 | No.2607 Add One Digit |
ユーザー | nikoro256 |
提出日時 | 2024-01-19 21:31:05 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 1,000 ms |
コード長 | 168 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 82,096 KB |
実行使用メモリ | 52,096 KB |
最終ジャッジ日時 | 2024-09-28 04:01:49 |
合計ジャッジ時間 | 1,803 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
N=input() Set=set() for i in range(len(N)+1): for j in range(10): if i==0 and j==0: continue Set.add(N[:i]+str(j)+N[i:]) print(len(Set))