結果
問題 | No.2209 Flip and Reverse |
ユーザー |
![]() |
提出日時 | 2023-03-24 19:56:11 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 108 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 65,408 KB |
最終ジャッジ日時 | 2024-09-18 16:35:15 |
合計ジャッジ時間 | 4,266 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 30 |
ソースコード
n=iint(input()) s=input() t=input() cnt=0 for i in range(n): if s[i] != t[i]: cnt+=1 print(cnt)