結果
| 問題 |
No.8116 TCP ソート
|
| コンテスト | |
| ユーザー |
Kude
|
| 提出日時 | 2025-04-01 21:23:11 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 73 bytes |
| コンパイル時間 | 469 ms |
| コンパイル使用メモリ | 82,344 KB |
| 実行使用メモリ | 53,796 KB |
| 最終ジャッジ日時 | 2025-04-01 21:23:14 |
| 合計ジャッジ時間 | 2,139 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 WA * 16 |
ソースコード
s = input()
ans = ''
for c in 'TCP':
ans += s.count(c) * c
print(ans)
Kude