結果
| 問題 | No.2209 Flip and Reverse |
| コンテスト | |
| ユーザー |
chankei271828
|
| 提出日時 | 2023-02-10 21:37:56 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 128 ms |
| コンパイル使用メモリ | 85,504 KB |
| 実行使用メモリ | 166,816 KB |
| 最終ジャッジ日時 | 2026-03-29 07:08:11 |
| 合計ジャッジ時間 | 4,000 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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)
chankei271828