結果

問題 No.432 占い(Easy)
ユーザー caleicalei
提出日時 2020-01-30 16:23:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,041 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 58,188 KB
最終ジャッジ日時 2024-09-16 03:37:58
合計ジャッジ時間 27,143 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 978 ms
57,928 KB
testcase_01 AC 940 ms
57,288 KB
testcase_02 AC 921 ms
57,424 KB
testcase_03 AC 955 ms
57,448 KB
testcase_04 AC 937 ms
57,292 KB
testcase_05 AC 955 ms
57,804 KB
testcase_06 AC 946 ms
57,928 KB
testcase_07 AC 930 ms
57,704 KB
testcase_08 AC 934 ms
57,432 KB
testcase_09 AC 927 ms
57,800 KB
testcase_10 AC 926 ms
57,804 KB
testcase_11 AC 958 ms
57,672 KB
testcase_12 AC 1,025 ms
57,416 KB
testcase_13 AC 1,025 ms
58,180 KB
testcase_14 AC 944 ms
57,668 KB
testcase_15 AC 933 ms
58,064 KB
testcase_16 AC 940 ms
57,680 KB
testcase_17 AC 1,041 ms
57,816 KB
testcase_18 AC 978 ms
57,296 KB
testcase_19 AC 950 ms
58,188 KB
testcase_20 AC 958 ms
57,676 KB
testcase_21 AC 961 ms
57,332 KB
testcase_22 AC 936 ms
57,712 KB
testcase_23 AC 958 ms
57,676 KB
testcase_24 AC 939 ms
57,804 KB
testcase_25 AC 966 ms
57,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# yukicoder No.432 占い(Easy) 2020/01/30

from scipy.special import comb

t=int(input())
s=[list(map(int,list(input()))) for _ in range(t)]

for e in s:
    n=len(e)
    res=0
    if n==1:
        print(*e)
    elif n==2:
        res=sum(e)
        if res%9:
            print(res%9)
        else:
            if res==0:
                print(0)
            else:
                print(9)
    else:
        for k,f in enumerate(e,1):
            res+=comb(n-1,k-1,exact=True)*f
        if res==0:
            print(res)
            continue
        ret=(sum(map(int,list(str(res)))))
        if ret%9:
            print(ret%9)
        else:
            print(9)
0