結果

問題 No.1168 Digit Sum Sequence
ユーザー gorugo30gorugo30
提出日時 2021-01-20 11:48:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 75,388 KB
最終ジャッジ日時 2024-12-22 21:50:02
合計ジャッジ時間 3,514 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
74,772 KB
testcase_01 AC 64 ms
74,908 KB
testcase_02 AC 63 ms
74,924 KB
testcase_03 AC 62 ms
74,988 KB
testcase_04 AC 61 ms
75,224 KB
testcase_05 AC 62 ms
74,904 KB
testcase_06 AC 65 ms
74,996 KB
testcase_07 AC 61 ms
74,968 KB
testcase_08 AC 60 ms
74,852 KB
testcase_09 AC 62 ms
74,992 KB
testcase_10 AC 63 ms
74,604 KB
testcase_11 AC 63 ms
74,736 KB
testcase_12 AC 62 ms
75,068 KB
testcase_13 AC 59 ms
74,724 KB
testcase_14 AC 60 ms
75,004 KB
testcase_15 AC 58 ms
74,644 KB
testcase_16 AC 62 ms
74,996 KB
testcase_17 AC 60 ms
74,652 KB
testcase_18 AC 59 ms
74,804 KB
testcase_19 AC 62 ms
75,004 KB
testcase_20 AC 61 ms
74,856 KB
testcase_21 AC 61 ms
75,064 KB
testcase_22 AC 64 ms
74,732 KB
testcase_23 AC 63 ms
74,920 KB
testcase_24 AC 64 ms
74,972 KB
testcase_25 AC 64 ms
74,732 KB
testcase_26 AC 62 ms
74,836 KB
testcase_27 AC 63 ms
75,096 KB
testcase_28 AC 62 ms
75,388 KB
testcase_29 AC 65 ms
74,724 KB
testcase_30 AC 62 ms
74,864 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