結果
| 問題 |
No.547 未知の言語
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-17 20:15:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 40 ms / 2,000 ms |
| コード長 | 169 bytes |
| コンパイル時間 | 204 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 51,840 KB |
| 最終ジャッジ日時 | 2024-06-29 07:48:38 |
| 合計ジャッジ時間 | 2,338 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
n = int(input()) s = input().split() t = input().split() array = [index for index,(i,j) in enumerate(zip(s,t)) if i!=j][0] print(array+1) print(s[array]) print(t[array])