結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
13,568 KB
testcase_01 MLE -
testcase_02 AC 25 ms
13,440 KB
testcase_03 MLE -
testcase_04 AC 25 ms
13,568 KB
testcase_05 AC 27 ms
8,064 KB
testcase_06 AC 27 ms
8,192 KB
testcase_07 AC 27 ms
8,192 KB
testcase_08 AC 95 ms
18,048 KB
testcase_09 AC 44 ms
8,320 KB
testcase_10 AC 38 ms
8,192 KB
testcase_11 AC 38 ms
8,064 KB
testcase_12 AC 41 ms
8,192 KB
testcase_13 AC 92 ms
18,048 KB
testcase_14 AC 41 ms
8,320 KB
testcase_15 TLE -
testcase_16 AC 646 ms
28,160 KB
testcase_17 AC 182 ms
8,320 KB
testcase_18 AC 139 ms
8,064 KB
testcase_19 AC 151 ms
8,192 KB
testcase_20 AC 181 ms
8,192 KB
testcase_21 TLE -
testcase_22 AC 636 ms
28,160 KB
testcase_23 AC 25 ms
8,064 KB
testcase_24 AC 636 ms
28,032 KB
testcase_25 TLE -
testcase_26 AC 924 ms
159,488 KB
testcase_27 AC 150 ms
9,472 KB
testcase_28 AC 145 ms
9,216 KB
testcase_29 AC 162 ms
8,064 KB
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]
    for k in xrange(n):
        line.append(line[k]*(n - k)/(k + 1))
    return line

T = int(raw_input())
for loop in xrange(T):
    S = raw_input()
    N = len(S)
    if N == 1:
        print S
        continue
    p = pascal(N - 1)
    X = 0
    for i, s in enumerate(S):
        X += int(s)*p[i]
    ans = 0
    for x in str(X):
        ans = ans + int(x)
        if ans >= 10:
            ans = ans%10 + 1
    print ans
0