結果
問題 |
No.547 未知の言語
|
ユーザー |
![]() |
提出日時 | 2018-06-01 00:41:18 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 454 bytes |
コンパイル時間 | 922 ms |
コンパイル使用メモリ | 107,660 KB |
実行使用メモリ | 28,140 KB |
最終ジャッジ日時 | 2024-06-30 08:44:45 |
合計ジャッジ時間 | 2,629 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 33 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; class No547{ static void Main(string[] args){ var i=Int32.Parse(Console.ReadLine()); string[] a=(Console.ReadLine()).Split(" "); string[] b=(Console.ReadLine()).Split(" "); for(int j=0;j<i;j++){ if(a[j]==b[j]){ } else{ Console.WriteLine(j); Console.WriteLine(a[j]); Console.WriteLine(b[j]); } } } }