結果

問題 No.432 占い(Easy)
ユーザー yumechiyumechi
提出日時 2019-12-24 20:43:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 189 bytes
コンパイル時間 752 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 66,844 KB
最終ジャッジ日時 2024-09-22 11:42:42
合計ジャッジ時間 2,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,212 KB
testcase_01 AC 37 ms
52,748 KB
testcase_02 AC 35 ms
52,468 KB
testcase_03 AC 36 ms
52,676 KB
testcase_04 AC 40 ms
58,780 KB
testcase_05 AC 36 ms
52,728 KB
testcase_06 AC 37 ms
52,860 KB
testcase_07 AC 40 ms
58,292 KB
testcase_08 AC 38 ms
53,784 KB
testcase_09 AC 61 ms
65,400 KB
testcase_10 AC 45 ms
61,224 KB
testcase_11 AC 43 ms
61,500 KB
testcase_12 AC 48 ms
65,072 KB
testcase_13 AC 48 ms
65,184 KB
testcase_14 AC 43 ms
61,568 KB
testcase_15 AC 36 ms
53,016 KB
testcase_16 AC 36 ms
52,960 KB
testcase_17 AC 48 ms
65,148 KB
testcase_18 AC 47 ms
62,884 KB
testcase_19 AC 43 ms
61,936 KB
testcase_20 AC 43 ms
61,256 KB
testcase_21 AC 45 ms
61,300 KB
testcase_22 AC 47 ms
61,856 KB
testcase_23 AC 51 ms
61,788 KB
testcase_24 AC 60 ms
66,844 KB
testcase_25 AC 58 ms
65,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(d):
  l = len(d)
  if l == 1:
    return d[0]
  return f([(d[i]+d[i+1])//10+(d[i]+d[i+1])%10 for i in range(l-1)])

for _ in range(int(input())):
  print(f([int(i) for i in input()]))
0