結果
問題 | No.432 占い(Easy) |
ユーザー | tookunn_1213 |
提出日時 | 2016-10-14 22:40:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 627 ms / 2,000 ms |
コード長 | 455 bytes |
コンパイル時間 | 250 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-22 07:38:49 |
合計ジャッジ時間 | 4,553 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 22 |
ソースコード
T = int(input()) S = [input() for i in range(T)] def dfs(s): if len(s) == 1: return s next = '' for i in range(len(s) - 1): ss = int(s[i]) + int(s[i + 1]) if ss >= 10: ss = ss // 10 + ss % 10 next += str(ss) return dfs(next) for i in range(T): while len(S[i]) > 1: next = '' for j in range(len(S[i]) - 1): ss = int(S[i][j]) + int(S[i][j + 1]) if ss >= 10: ss = ss // 10 + ss % 10 next += str(ss) S[i] = next print(S[i])