結果
問題 |
No.2209 Flip and Reverse
|
ユーザー |
![]() |
提出日時 | 2023-02-10 21:37:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 136 bytes |
コンパイル時間 | 154 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 174,724 KB |
最終ジャッジ日時 | 2024-07-07 15:48:59 |
合計ジャッジ時間 | 5,284 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 19 WA * 11 |
ソースコード
N=int(input()) S=list(input()) T=list(input()) S=list(reversed(S)) cnt=0 for i in range(N): if S[i]!=T[i]: cnt+=1 print(cnt)