結果
問題 |
No.547 未知の言語
|
ユーザー |
![]() |
提出日時 | 2018-03-11 21:49:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 31 ms / 2,000 ms |
コード長 | 263 bytes |
コンパイル時間 | 174 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-26 03:03:51 |
合計ジャッジ時間 | 2,075 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
# coding: utf-8 # Your code here! n = int(input()) s = [c for c in input().rstrip().split()] t = [c for c in input().rstrip().split()] for s1, t1 in enumerate(zip(s, t), start=1): if t1[0] != t1[1]: print(s1) print(t1[0]) print(t1[1])