結果

問題 No.1168 Digit Sum Sequence
ユーザー gorugo30gorugo30
提出日時 2021-01-20 11:48:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 75,332 KB
最終ジャッジ日時 2024-06-02 04:32:23
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
74,904 KB
testcase_01 AC 53 ms
74,852 KB
testcase_02 AC 53 ms
75,268 KB
testcase_03 AC 51 ms
74,736 KB
testcase_04 AC 50 ms
74,904 KB
testcase_05 AC 51 ms
74,736 KB
testcase_06 AC 52 ms
74,928 KB
testcase_07 AC 50 ms
75,064 KB
testcase_08 AC 51 ms
74,736 KB
testcase_09 AC 49 ms
75,184 KB
testcase_10 AC 52 ms
74,824 KB
testcase_11 AC 52 ms
75,268 KB
testcase_12 AC 52 ms
74,604 KB
testcase_13 AC 55 ms
74,724 KB
testcase_14 AC 50 ms
75,296 KB
testcase_15 AC 52 ms
74,836 KB
testcase_16 AC 51 ms
75,160 KB
testcase_17 AC 52 ms
75,212 KB
testcase_18 AC 52 ms
74,740 KB
testcase_19 AC 50 ms
75,224 KB
testcase_20 AC 51 ms
74,728 KB
testcase_21 AC 51 ms
74,928 KB
testcase_22 AC 51 ms
74,792 KB
testcase_23 AC 52 ms
74,980 KB
testcase_24 AC 52 ms
75,148 KB
testcase_25 AC 51 ms
74,868 KB
testcase_26 AC 50 ms
75,012 KB
testcase_27 AC 51 ms
75,196 KB
testcase_28 AC 53 ms
75,332 KB
testcase_29 AC 51 ms
74,600 KB
testcase_30 AC 54 ms
75,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
i = 1
def digitsum(n):
    ans = 0
    for i in range(100):
        ans += (n // (10 ** i)) % 10
    return ans
while i < 100:
    N = digitsum(N)
    i += 1
print(N)
0