結果
| 問題 |
No.547 未知の言語
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-07-29 12:50:18 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 187 bytes |
| コンパイル時間 | 156 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-06-26 02:20:21 |
| 合計ジャッジ時間 | 2,092 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 33 |
ソースコード
N=int (input ())
S=[i for i in input (). split ()]
T=[i for i in input (). split ()]
i=0
while i<N:
if S[i]!=T[i]:
print (i)
print (S[i])
print (T[i])
i+=1
rocoder