結果

問題 No.547 未知の言語
ユーザー Nobita Gomu
提出日時 2017-08-23 23:31:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-26 02:38:51
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input().split()
T = input().split()

for idx,it in enumerate(zip(S, T)):
    if it[0] != it[1]:
        idx += 1
        break

print(idx)
print(it[0])
print(it[1])
0