結果

問題 No.3028 No.9999
ユーザー 斉藤+あるふぁ。
提出日時 2025-02-21 22:01:40
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 137 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2025-02-21 22:01:52
合計ジャッジ時間 11,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13 TLE * 1 -- * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
k = len(N)
n = int(N)
kk = 10 ** k
# print(kk)
while(1):
    if((kk-1) % n == 0) : break;
    k += 1;
    kk *= 10;

print(k)
0