結果

問題 No.547 未知の言語
ユーザー Schnee
提出日時 2019-10-22 20:46:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-04 18:29:05
合計ジャッジ時間 2,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

n, l1, l2 = input(), input().split(), input().split()
i = 0
while True:
    if l1[i] != l2[i]:
        print(f"{i+1}\n{l1[i]}\n{l2[i]}")
        break
    else:
        i += 1
0