結果
| 問題 | No.1168 Digit Sum Sequence |
| コンテスト | |
| ユーザー |
はと
|
| 提出日時 | 2023-08-01 00:28:29 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
RE
不安定
|
| 実行時間 | - |
| コード長 | 168 bytes |
| 記録 | |
| コンパイル時間 | 53 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 13,568 KB |
| 最終ジャッジ日時 | 2026-09-13 07:59:40 |
| 合計ジャッジ時間 | 3,162 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 29 |
ソースコード
N = int(input())
list1 = list(N)
n = 0
def main(lists):
for i in lists:
n = n + 1
lists = list(n)
if len(lists) == 1:
break
print(main(list1))
はと