結果

問題 No.671 1000000007
ユーザー Ricky-yu
提出日時 2018-07-12 15:58:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 223 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-10-02 03:28:12
合計ジャッジ時間 1,366 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

taget_num = "1000000007"
count = 0
user_num = input("plase enter your number")

if (len(taget_num) > len(user_num)):
    count =  (len(taget_num) - len(user_num))
else:
   count = len(user_num)-len(taget_num)

print (count)
0