結果
| 問題 |
No.547 未知の言語
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-02-08 21:09:21 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 38 ms / 2,000 ms |
| コード長 | 183 bytes |
| コンパイル時間 | 175 ms |
| コンパイル使用メモリ | 82,368 KB |
| 実行使用メモリ | 53,436 KB |
| 最終ジャッジ日時 | 2024-06-23 16:54:33 |
| 合計ジャッジ時間 | 2,411 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 33 |
ソースコード
N = int(input())
lsS = input().split()
lsT = input().split()
for i in range(N):
if lsS[i] != lsT[i]:
print(i+1)
print(lsS[i])
print(lsT[i])
exit()