結果
問題 |
No.8032 Unavailability of Inequality Signs
|
ユーザー |
|
提出日時 | 2023-08-09 14:25:38 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 24 ms / 2,000 ms |
コード長 | 996 bytes |
コンパイル時間 | 2,129 ms |
コンパイル使用メモリ | 103,808 KB |
実行使用メモリ | 17,792 KB |
最終ジャッジ日時 | 2024-11-15 10:14:45 |
合計ジャッジ時間 | 3,066 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; namespace yukicoder { public class Program { public static void Main() { var n = int.Parse(Console.ReadLine()); var a = new int[n]; var b = new int[n]; var i = 0; while (i != n) { var line = Console.ReadLine().Split(' '); a[i] = int.Parse(line[0]); b[i] = int.Parse(line[1]); i++; } i = 0; while (i != n) { if (a[i] == b[i]) { Console.WriteLine("="); } else if (Math.Max(a[i], b[i]) == a[i]) { Console.WriteLine((char)62); } else { Console.WriteLine((char)60); } i++; } } } }