結果
問題 |
No.547 未知の言語
|
ユーザー |
|
提出日時 | 2019-09-18 19:09:23 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 181 bytes |
コンパイル時間 | 186 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-08 13:46:27 |
合計ジャッジ時間 | 1,906 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
n = int(input()) lst1=list(input().split()) lst2=list(input().split()) for j in range(n): if lst1[j] != lst2[j]: print(j+1) print(lst1[j]) print(lst2[j])