結果

問題 No.83 最大マッチング
ユーザー jamadjamad
提出日時 2017-06-24 20:56:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 281 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-10-04 03:03:47
合計ジャッジ時間 4,557 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
11,648 KB
testcase_01 AC 238 ms
11,648 KB
testcase_02 AC 238 ms
11,520 KB
testcase_03 AC 245 ms
11,520 KB
testcase_04 AC 239 ms
11,648 KB
testcase_05 AC 242 ms
11,648 KB
testcase_06 AC 251 ms
11,648 KB
testcase_07 AC 248 ms
11,520 KB
testcase_08 AC 237 ms
11,648 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

A=[6,2,5,5,4,5,6,3,7,6]
for i in range(10,10**5+1):
    x=i
    tmp=0
    while 1:
        one=x%10
        tmp+=A[one]
        rest=x//10
        x=rest
        if x==0:break
    A.append(tmp)
#print(A)
N=int(input())
idx=0
for x in range(10**5+1):
    if N>=A[x]:idx=x
print(idx)
0