結果

問題 No.434 占い
ユーザー roiti46roiti46
提出日時 2016-10-15 00:43:15
言語 Python2
(2.7.18)
結果
MLE  
実行時間 -
コード長 563 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 623,232 KB
最終ジャッジ日時 2024-11-22 09:39:32
合計ジャッジ時間 15,272 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
13,312 KB
testcase_01 MLE -
testcase_02 AC 24 ms
13,440 KB
testcase_03 MLE -
testcase_04 AC 25 ms
13,568 KB
testcase_05 AC 23 ms
8,192 KB
testcase_06 AC 26 ms
8,064 KB
testcase_07 WA -
testcase_08 AC 122 ms
18,048 KB
testcase_09 AC 37 ms
8,192 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 40 ms
8,064 KB
testcase_13 AC 121 ms
17,920 KB
testcase_14 AC 38 ms
8,192 KB
testcase_15 TLE -
testcase_16 AC 592 ms
18,048 KB
testcase_17 AC 156 ms
8,320 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 181 ms
8,064 KB
testcase_21 TLE -
testcase_22 AC 630 ms
18,048 KB
testcase_23 AC 25 ms
8,064 KB
testcase_24 AC 526 ms
18,176 KB
testcase_25 TLE -
testcase_26 AC 1,422 ms
159,488 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

def pascal(n):
    line = [1]*(n + 1)
    for k in xrange(n):
        line[k + 1] = line[k]*(n - k)/(k + 1)
    return line

P = dict()
T = int(raw_input())
for loop in xrange(T):
    S = raw_input()
    N = len(S)
    if N == 1:
        print S
        continue
    if N not in P:
        p = pascal(N - 1)
        P[N] = p
    else:
        p = P[N]
    X = 0
    for i, s in enumerate(S):
        X += int(s)*p[i]
        if X > 9: X %= 9
    print X 
0