結果
| 問題 | No.547 未知の言語 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-08-03 21:05:06 |
| 言語 | C#(csc) (csc 3.9.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 381 bytes |
| 記録 | |
| コンパイル時間 | 765 ms |
| コンパイル使用メモリ | 112,288 KB |
| 実行使用メモリ | 25,512 KB |
| 最終ジャッジ日時 | 2026-03-12 15:17:42 |
| 合計ジャッジ時間 | 1,962 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 33 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System;
using System.Linq;
class Program
{
static void Main(string[] args)
{
int N = int.Parse(Console.ReadLine());
var S = Console.ReadLine().Split().ToArray();
var T = Console.ReadLine().Split().ToArray();
for (int i = 1; i <= N; i++)
{
if (S[i] != T[i])
{
Console.WriteLine(i);
Console.WriteLine(S[i]);
Console.WriteLine(T[i]);
}
}
}
}