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