結果
| 問題 |
No.432 占い(Easy)
|
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2020-09-27 21:22:15 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 129 bytes |
| コンパイル時間 | 99 ms |
| コンパイル使用メモリ | 12,672 KB |
| 実行使用メモリ | 24,256 KB |
| 最終ジャッジ日時 | 2024-06-30 12:57:25 |
| 合計ジャッジ時間 | 6,487 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 1 -- * 3 |
| other | -- * 22 |
ソースコード
n = int(input())
for i in range(n):
s = input()
while(len(s) > 1):
s = str(sum(map(int, s.split())))
print(s)
Konton7