結果

問題 No.432 占い(Easy)
ユーザー liny_tailliny_tail
提出日時 2020-09-04 10:46:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 315 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-03 23:09:44
合計ジャッジ時間 3,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 34 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 36 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 34 ms
10,752 KB
testcase_10 AC 35 ms
10,752 KB
testcase_11 AC 71 ms
10,624 KB
testcase_12 AC 453 ms
10,624 KB
testcase_13 AC 453 ms
10,752 KB
testcase_14 AC 71 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 31 ms
10,752 KB
testcase_17 AC 448 ms
10,624 KB
testcase_18 AC 238 ms
10,624 KB
testcase_19 AC 166 ms
10,624 KB
testcase_20 AC 89 ms
10,752 KB
testcase_21 AC 101 ms
10,752 KB
testcase_22 AC 35 ms
10,624 KB
testcase_23 AC 34 ms
10,752 KB
testcase_24 AC 33 ms
10,752 KB
testcase_25 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input().strip())

def f2(txt):
  tmp = int(txt[0]) + int(txt[1])
  return str(tmp // 10 + tmp % 10)

def f(txt):
  while True:
    if len(txt) == 1:
      return txt
    
    txt = ''.join([f2(txt[i:i+2]) for i in range(len(txt) - 1)])

lst = [f(input().strip()) for _ in range(T)]
for i in lst:
  print(i)
0