結果
| 問題 | No.432 占い(Easy) |
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2020-09-27 21:26:37 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 129 bytes |
| 記録 | |
| コンパイル時間 | 502 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 15,488 KB |
| 最終ジャッジ日時 | 2026-03-20 12:44:33 |
| 合計ジャッジ時間 | 3,736 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 2 |
| other | AC * 5 WA * 17 |
ソースコード
n = int(input())
for i in range(n):
s = input()
while(len(s) > 1):
s = str(sum([int(v) for v in s]))
print(s)
Konton7