結果

問題 No.378 名声値を稼ごう
ユーザー rocoderrocoder
提出日時 2017-06-11 16:13:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-30 01:19:53
合計ジャッジ時間 686 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# your code goes here
def lidi(li):
    A=[]
    i=0
    if li[0]==1:
        li[1]+=10
        i+=1
    while i<len(li)-1:
        if li[i]%2==1:
            li[i+1]+=10
        A.append(li[i]//2)
        i+=1
    A.append(li[i]//2)
    return A
N=input()
Nl=list(N)
Ni=[0]*len(Nl)
for i in range (len(Nl)):
    Ni[i]=int(Nl[i])
Od=0
while len(Ni)>1:
  #  print(Ni)
    if Ni[len(Ni)-1]%2==1:
        Od+=1
    Ni=lidi (Ni)
M=Ni[0]
while M>1:
    if M%2==1:
        Od+=1
    M//=2
print (Od+1)
0