結果
問題 | No.2607 Add One Digit |
ユーザー |
|
提出日時 | 2024-01-19 22:49:06 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 131 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 54,428 KB |
最終ジャッジ日時 | 2024-09-28 04:55:47 |
合計ジャッジ時間 | 1,654 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 3 |
other | WA * 17 |
ソースコード
N = input()s = set()for i in range(len(N) + 1):for j in range(10):t = N[0:i] + str(j) + N[i:]s.add(int(t))print(len(s))