結果

問題 No.547 未知の言語
ユーザー vwxyz
提出日時 2022-08-05 17:19:01
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 239 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-15 12:51:09
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline
import datetime

N=int(readline())
S=readline().rstrip().split()
T=readline().rstrip().split()
for ans,(s,t) in enumerate(zip(S,T),1):
    if s!=t:
        print(ans)
        print(s)
        print(t)
0