結果
問題 | No.1643 Not Substring |
ユーザー |
|
提出日時 | 2024-07-07 20:28:00 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 60 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-07 20:28:02 |
合計ジャッジ時間 | 1,984 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 WA * 2 |
ソースコード
s = input()t = sorted(s)print(t.count(t[0]) * t[0] + t[0])