結果
問題 |
No.224 文字列変更(easy)
|
ユーザー |
![]() |
提出日時 | 2016-03-30 22:13:33 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 198 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-10-02 08:17:28 |
合計ジャッジ時間 | 1,731 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 4 WA * 18 |
ソースコード
#!/usr/bin/env python3 #fileencoding: utf-8 n = int(input()) d = {} for i in input(): d[i] = d.get(i,0) + 1 for i in input(): d[i] = d.get(i,1) - 1 print(sum([abs(i) for i in d.values()]))