結果
問題 | No.201 yukicoderじゃんけん |
ユーザー | huffman56 |
提出日時 | 2022-10-30 12:21:35 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 123 ms / 5,000 ms |
コード長 | 565 bytes |
コンパイル時間 | 840 ms |
コンパイル使用メモリ | 109,860 KB |
実行使用メモリ | 31,480 KB |
最終ジャッジ日時 | 2024-07-07 04:58:18 |
合計ジャッジ時間 | 2,481 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
27,792 KB |
testcase_01 | AC | 29 ms
25,136 KB |
testcase_02 | AC | 23 ms
25,136 KB |
testcase_03 | AC | 29 ms
25,372 KB |
testcase_04 | AC | 29 ms
25,260 KB |
testcase_05 | AC | 29 ms
27,548 KB |
testcase_06 | AC | 27 ms
23,472 KB |
testcase_07 | AC | 29 ms
27,412 KB |
testcase_08 | AC | 30 ms
27,556 KB |
testcase_09 | AC | 30 ms
25,240 KB |
testcase_10 | AC | 29 ms
25,264 KB |
testcase_11 | AC | 23 ms
25,092 KB |
testcase_12 | AC | 24 ms
27,012 KB |
testcase_13 | AC | 31 ms
25,516 KB |
testcase_14 | AC | 27 ms
25,484 KB |
testcase_15 | AC | 119 ms
31,480 KB |
testcase_16 | AC | 123 ms
29,552 KB |
testcase_17 | AC | 122 ms
29,560 KB |
testcase_18 | AC | 25 ms
24,988 KB |
testcase_19 | AC | 119 ms
29,568 KB |
コンパイルメッセージ
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; using System.Numerics; namespace SortItems { class Program { static void Main(string[] args) { var x = Console.ReadLine().Split().ToArray(); var y = Console.ReadLine().Split().ToArray(); if (x[1] != y[1]) { Console.WriteLine(BigInteger.Parse(x[1]) > BigInteger.Parse(y[1]) ? x[0] : y[0]); } else { Console.WriteLine(-1); } } } }