結果

問題 No.374 コイン
ユーザー akichiakichi
提出日時 2017-08-25 05:15:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 213 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 101,808 KB
実行使用メモリ 24,016 KB
最終ジャッジ日時 2023-08-05 18:03:33
合計ジャッジ時間 5,742 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
21,844 KB
testcase_01 AC 57 ms
21,984 KB
testcase_02 AC 57 ms
23,812 KB
testcase_03 AC 58 ms
23,836 KB
testcase_04 AC 59 ms
21,784 KB
testcase_05 AC 58 ms
23,828 KB
testcase_06 AC 58 ms
23,760 KB
testcase_07 AC 57 ms
23,816 KB
testcase_08 AC 58 ms
21,896 KB
testcase_09 AC 59 ms
24,016 KB
testcase_10 AC 58 ms
21,908 KB
testcase_11 AC 59 ms
21,832 KB
testcase_12 AC 58 ms
21,940 KB
testcase_13 AC 58 ms
23,884 KB
testcase_14 AC 59 ms
21,928 KB
testcase_15 AC 58 ms
21,992 KB
testcase_16 AC 59 ms
21,904 KB
testcase_17 AC 59 ms
21,832 KB
testcase_18 AC 59 ms
23,980 KB
testcase_19 AC 58 ms
21,908 KB
testcase_20 AC 57 ms
21,976 KB
testcase_21 AC 58 ms
21,828 KB
testcase_22 AC 58 ms
21,848 KB
testcase_23 AC 57 ms
22,036 KB
testcase_24 AC 58 ms
19,752 KB
testcase_25 AC 59 ms
23,756 KB
testcase_26 AC 60 ms
22,004 KB
testcase_27 AC 58 ms
21,976 KB
testcase_28 AC 61 ms
23,964 KB
testcase_29 AC 59 ms
21,936 KB
testcase_30 AC 58 ms
23,992 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;
class Program {
    static void Main() {
        long[] ab = Console.ReadLine().Split().Select(long.Parse).ToArray();
        Console.WriteLine(ab[0] < ab[1] ? "K" : "S");
    }
}
0