結果

問題 No.547 未知の言語
ユーザー kohei2019kohei2019
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,424 KB
testcase_01 AC 36 ms
51,996 KB
testcase_02 AC 36 ms
52,276 KB
testcase_03 AC 36 ms
52,468 KB
testcase_04 AC 35 ms
52,088 KB
testcase_05 AC 34 ms
51,492 KB
testcase_06 AC 34 ms
52,484 KB
testcase_07 AC 33 ms
52,364 KB
testcase_08 AC 34 ms
51,960 KB
testcase_09 AC 35 ms
53,236 KB
testcase_10 AC 35 ms
51,696 KB
testcase_11 AC 36 ms
52,592 KB
testcase_12 AC 37 ms
52,232 KB
testcase_13 AC 37 ms
52,560 KB
testcase_14 AC 38 ms
52,320 KB
testcase_15 AC 38 ms
51,980 KB
testcase_16 AC 36 ms
52,268 KB
testcase_17 AC 38 ms
52,384 KB
testcase_18 AC 35 ms
52,364 KB
testcase_19 AC 36 ms
51,768 KB
testcase_20 AC 36 ms
52,332 KB
testcase_21 AC 37 ms
52,172 KB
testcase_22 AC 35 ms
53,436 KB
testcase_23 AC 36 ms
52,400 KB
testcase_24 AC 37 ms
52,036 KB
testcase_25 AC 36 ms
52,996 KB
testcase_26 AC 36 ms
52,572 KB
testcase_27 AC 34 ms
52,472 KB
testcase_28 AC 35 ms
52,080 KB
testcase_29 AC 34 ms
52,488 KB
testcase_30 AC 35 ms
52,148 KB
testcase_31 AC 38 ms
52,420 KB
testcase_32 AC 35 ms
53,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()
0