結果

問題 No.201 yukicoderじゃんけん
ユーザー pirorirori_n712pirorirori_n712
提出日時 2018-09-19 01:42:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 355 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 111,604 KB
実行使用メモリ 30,488 KB
最終ジャッジ日時 2024-07-18 08:12:02
合計ジャッジ時間 2,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,184 KB
testcase_01 AC 27 ms
24,496 KB
testcase_02 AC 24 ms
22,324 KB
testcase_03 AC 30 ms
24,312 KB
testcase_04 AC 27 ms
22,324 KB
testcase_05 AC 26 ms
24,240 KB
testcase_06 AC 26 ms
26,424 KB
testcase_07 AC 26 ms
24,380 KB
testcase_08 AC 27 ms
22,324 KB
testcase_09 AC 27 ms
24,176 KB
testcase_10 AC 27 ms
24,052 KB
testcase_11 AC 28 ms
24,364 KB
testcase_12 AC 28 ms
24,308 KB
testcase_13 AC 27 ms
22,324 KB
testcase_14 AC 27 ms
24,308 KB
testcase_15 AC 96 ms
26,540 KB
testcase_16 AC 94 ms
28,432 KB
testcase_17 AC 97 ms
30,352 KB
testcase_18 AC 97 ms
30,360 KB
testcase_19 AC 94 ms
30,488 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;
using System.Numerics;

class No201
{
    static void Main()
    {
        var f = Console.ReadLine().Split(' ');
        var s = Console.ReadLine().Split(' ');
        var fn = BigInteger.Parse(f[1]);
        var sn = BigInteger.Parse(s[1]);
        Console.WriteLine(fn - sn > 0 ? f[0] : fn == sn ?" -1" : s[0]);
    }
}
0