結果

問題 No.432 占い(Easy)
ユーザー hiragnhiragn
提出日時 2022-11-09 19:18:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,580 KB
最終ジャッジ日時 2024-07-23 01:07:08
合計ジャッジ時間 17,793 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
44,452 KB
testcase_01 AC 545 ms
44,332 KB
testcase_02 AC 540 ms
44,068 KB
testcase_03 AC 544 ms
44,068 KB
testcase_04 AC 546 ms
44,192 KB
testcase_05 AC 538 ms
44,328 KB
testcase_06 AC 536 ms
44,580 KB
testcase_07 AC 551 ms
44,072 KB
testcase_08 AC 544 ms
44,104 KB
testcase_09 AC 555 ms
44,200 KB
testcase_10 AC 559 ms
44,452 KB
testcase_11 AC 585 ms
44,076 KB
testcase_12 AC 781 ms
44,456 KB
testcase_13 AC 796 ms
44,448 KB
testcase_14 AC 592 ms
44,480 KB
testcase_15 AC 552 ms
44,456 KB
testcase_16 AC 553 ms
44,064 KB
testcase_17 AC 816 ms
44,452 KB
testcase_18 AC 719 ms
44,064 KB
testcase_19 AC 645 ms
44,168 KB
testcase_20 AC 617 ms
44,336 KB
testcase_21 AC 620 ms
44,200 KB
testcase_22 AC 572 ms
44,068 KB
testcase_23 AC 565 ms
44,332 KB
testcase_24 AC 548 ms
44,452 KB
testcase_25 AC 547 ms
43,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def f(x: int) -> int:
    return x % 10 + x // 10


def main():
    t = int(input())
    for _ in range(t):
        arr = np.array(list(map(int, list(input()))))
        while len(arr) > 1:
            tmp = np.add(arr, np.roll(arr, -1))
            arr = np.array([f(x) for x in tmp[:-1]])
        print(arr[0])


if __name__ == "__main__":
    main()
0