結果

問題 No.547 未知の言語
ユーザー BQZetBQZet
提出日時 2017-12-16 02:16:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 118 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 10,552 KB
実行使用メモリ 7,992 KB
最終ジャッジ日時 2023-09-08 09:51:42
合計ジャッジ時間 1,936 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 15 ms
7,992 KB
testcase_04 AC 15 ms
7,812 KB
testcase_05 RE -
testcase_06 AC 15 ms
7,880 KB
testcase_07 AC 15 ms
7,816 KB
testcase_08 RE -
testcase_09 AC 16 ms
7,976 KB
testcase_10 AC 15 ms
7,872 KB
testcase_11 AC 15 ms
7,820 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 15 ms
7,860 KB
testcase_15 RE -
testcase_16 AC 16 ms
7,792 KB
testcase_17 RE -
testcase_18 AC 16 ms
7,740 KB
testcase_19 RE -
testcase_20 AC 15 ms
7,872 KB
testcase_21 RE -
testcase_22 AC 15 ms
7,960 KB
testcase_23 RE -
testcase_24 AC 15 ms
7,744 KB
testcase_25 AC 16 ms
7,916 KB
testcase_26 AC 16 ms
7,824 KB
testcase_27 AC 15 ms
7,816 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 15 ms
7,820 KB
testcase_31 RE -
testcase_32 AC 16 ms
7,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
S=input().split()
T=input().split()

i=1
while S[i] == T[i]:
	i+=1
print(str(i+1),S[i],T[i],sep='\n')
0