結果

問題 No.374 コイン
ユーザー ixTL255ixTL255
提出日時 2016-09-07 21:51:36
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 62 ms / 1,000 ms
コード長 296 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 103,892 KB
実行使用メモリ 23,968 KB
最終ジャッジ日時 2023-08-09 23:01:12
合計ジャッジ時間 5,680 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
23,780 KB
testcase_01 AC 60 ms
23,900 KB
testcase_02 AC 60 ms
21,860 KB
testcase_03 AC 60 ms
21,864 KB
testcase_04 AC 60 ms
23,816 KB
testcase_05 AC 60 ms
21,848 KB
testcase_06 AC 61 ms
21,920 KB
testcase_07 AC 60 ms
21,896 KB
testcase_08 AC 60 ms
21,796 KB
testcase_09 AC 61 ms
21,860 KB
testcase_10 AC 60 ms
23,896 KB
testcase_11 AC 61 ms
23,920 KB
testcase_12 AC 61 ms
23,820 KB
testcase_13 AC 60 ms
23,916 KB
testcase_14 AC 61 ms
23,952 KB
testcase_15 AC 60 ms
23,896 KB
testcase_16 AC 60 ms
21,872 KB
testcase_17 AC 60 ms
23,896 KB
testcase_18 AC 61 ms
21,780 KB
testcase_19 AC 59 ms
21,872 KB
testcase_20 AC 60 ms
21,708 KB
testcase_21 AC 59 ms
21,900 KB
testcase_22 AC 60 ms
21,860 KB
testcase_23 AC 61 ms
23,832 KB
testcase_24 AC 60 ms
23,968 KB
testcase_25 AC 60 ms
21,776 KB
testcase_26 AC 59 ms
21,900 KB
testcase_27 AC 60 ms
19,808 KB
testcase_28 AC 60 ms
21,884 KB
testcase_29 AC 61 ms
21,976 KB
testcase_30 AC 61 ms
21,892 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.Collections.Generic;
using System.Linq;

public class Test
{
	public static void Main()
	{
		var list = Console.ReadLine()
					.Split(' ')
					.Select(x => long.Parse(x))
					.ToList();
					
		var ans = list[0] >= list[1] ? "S" : "K";
		Console.WriteLine(ans);
	}
}
0