結果
| 問題 | No.203 ゴールデン・ウィーク(1) |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-09-06 16:09:46 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 212 bytes |
| 記録 | |
| コンパイル時間 | 491 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 20,576 KB |
| 最終ジャッジ日時 | 2026-05-23 03:42:05 |
| 合計ジャッジ時間 | 5,146 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 28 RE * 1 |
ソースコード
from itertools import groupby c1 = input() c2 = input() C = c1 + c2 groups = groupby(C) result = [(label, sum(1 for _ in group)) for label, group in groups] O = [i for i in result if 'o' in i] print(max(O)[1])