結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー もすのんもすのん
提出日時 2024-05-20 14:26:05
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 242 bytes
コンパイル時間 9,956 ms
コンパイル使用メモリ 169,668 KB
実行使用メモリ 182,332 KB
最終ジャッジ日時 2024-05-20 14:26:16
合計ジャッジ時間 8,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
28,544 KB
testcase_01 AC 53 ms
182,332 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;

public class Test{
	static void Main(){
		string s = Console.ReadLine();
		string[] t = s.Split(' ');
		int a = int.Parse(t[0]);
		int b = int.Parse(t[1]);
		s = Console.ReadLine();
		Console.WriteLine("{0} {1}",a+b,s);
		
	}
}
0