結果

問題 No.374 コイン
ユーザー mencottonmencotton
提出日時 2018-03-19 22:11:27
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 276 bytes
コンパイル時間 3,826 ms
コンパイル使用メモリ 101,460 KB
実行使用メモリ 24,032 KB
最終ジャッジ日時 2023-09-02 10:51:40
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
22,008 KB
testcase_01 AC 58 ms
21,780 KB
testcase_02 AC 57 ms
21,892 KB
testcase_03 AC 57 ms
21,956 KB
testcase_04 AC 59 ms
23,924 KB
testcase_05 AC 59 ms
23,896 KB
testcase_06 AC 59 ms
21,812 KB
testcase_07 AC 59 ms
21,956 KB
testcase_08 AC 58 ms
21,912 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 AC 59 ms
23,912 KB
testcase_13 AC 59 ms
21,924 KB
testcase_14 AC 60 ms
23,916 KB
testcase_15 AC 59 ms
21,736 KB
testcase_16 AC 57 ms
19,764 KB
testcase_17 AC 58 ms
21,916 KB
testcase_18 AC 58 ms
21,976 KB
testcase_19 AC 58 ms
24,032 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 56 ms
20,016 KB
testcase_24 AC 57 ms
23,940 KB
testcase_25 AC 57 ms
21,848 KB
testcase_26 RE -
testcase_27 AC 60 ms
22,004 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace _374
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] x = Console.ReadLine().Split().Select(int.Parse).ToArray();
            Console.WriteLine(x[0] < x[1] ? "K" : "S");
        }
    }
}
0