結果

問題 No.374 コイン
ユーザー ixTL255
提出日時 2016-09-07 21:50:36
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 295 bytes
コンパイル時間 852 ms
コンパイル使用メモリ 105,728 KB
実行使用メモリ 18,944 KB
最終ジャッジ日時 2024-11-15 21:17:39
合計ジャッジ時間 2,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21 RE * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 => int.Parse(x))
					.ToList();
					
		var ans = list[0] >= list[1] ? "S" : "K";
		Console.WriteLine(ans);
	}
}
0