結果

問題 No.432 占い(Easy)
ユーザー caleicalei
提出日時 2020-01-30 16:15:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 106,380 KB
最終ジャッジ日時 2024-09-16 03:36:44
合計ジャッジ時間 8,060 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,831 ms
57,776 KB
testcase_01 AC 936 ms
57,652 KB
testcase_02 AC 931 ms
57,780 KB
testcase_03 AC 917 ms
58,156 KB
testcase_04 AC 935 ms
57,392 KB
testcase_05 AC 1,703 ms
58,160 KB
testcase_06 AC 1,301 ms
57,776 KB
testcase_07 AC 942 ms
58,160 KB
testcase_08 AC 934 ms
57,648 KB
testcase_09 AC 940 ms
58,168 KB
testcase_10 AC 957 ms
57,784 KB
testcase_11 AC 926 ms
57,652 KB
testcase_12 AC 1,022 ms
57,776 KB
testcase_13 AC 1,026 ms
58,160 KB
testcase_14 AC 930 ms
58,160 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 954 ms
57,656 KB
testcase_19 AC 949 ms
57,272 KB
testcase_20 AC 925 ms
57,776 KB
testcase_21 AC 931 ms
58,168 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 949 ms
106,380 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:
        print(e[0]+e[1])
    else:
        for k,f in enumerate(e,1):
            res+=comb(n-1,k-1,exact=True)*f
        ret=(sum(map(int,list(str(res)))))
        if ret%9:
            print(ret%9)
        else:
            print(9)
0