結果

問題 No.1168 Digit Sum Sequence
ユーザー トミートミー
提出日時 2024-04-30 00:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 53,692 KB
最終ジャッジ日時 2024-11-19 11:17:23
合計ジャッジ時間 2,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,236 KB
testcase_01 AC 36 ms
52,468 KB
testcase_02 AC 35 ms
52,180 KB
testcase_03 AC 34 ms
53,136 KB
testcase_04 AC 34 ms
52,568 KB
testcase_05 AC 35 ms
53,356 KB
testcase_06 AC 35 ms
53,692 KB
testcase_07 AC 34 ms
52,600 KB
testcase_08 AC 36 ms
52,424 KB
testcase_09 AC 35 ms
52,332 KB
testcase_10 AC 33 ms
53,008 KB
testcase_11 AC 35 ms
52,740 KB
testcase_12 AC 33 ms
53,136 KB
testcase_13 AC 35 ms
52,676 KB
testcase_14 AC 35 ms
52,340 KB
testcase_15 AC 35 ms
52,892 KB
testcase_16 AC 36 ms
53,072 KB
testcase_17 AC 35 ms
53,284 KB
testcase_18 AC 35 ms
53,680 KB
testcase_19 AC 33 ms
52,440 KB
testcase_20 AC 34 ms
52,540 KB
testcase_21 AC 35 ms
52,880 KB
testcase_22 AC 36 ms
52,528 KB
testcase_23 AC 34 ms
51,872 KB
testcase_24 AC 36 ms
53,284 KB
testcase_25 AC 33 ms
52,860 KB
testcase_26 AC 34 ms
52,348 KB
testcase_27 AC 35 ms
52,004 KB
testcase_28 AC 36 ms
51,992 KB
testcase_29 AC 36 ms
52,356 KB
testcase_30 AC 34 ms
52,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def digit_sum(a):
    a = str(a)
    cnt = 0
    for i in a:
        cnt += int(i)
    return cnt


def main():
    n = int(input())
    ans = n
    for i in range(n-1):
        ans = digit_sum(ans)
        if ans < 10:
            break
    print(ans)


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