結果
| 問題 |
No.8116 TCP ソート
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-04-02 00:47:51 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 110 bytes |
| コンパイル時間 | 395 ms |
| コンパイル使用メモリ | 82,408 KB |
| 実行使用メモリ | 55,572 KB |
| 最終ジャッジ日時 | 2025-04-02 00:47:54 |
| 合計ジャッジ時間 | 2,806 ms |
|
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 WA * 16 |
ソースコード
from collections import Counter
tcp="TCP"
s=input()
sc = Counter(s)
for ch in tcp:
print(ch*sc[ch],end="")