結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー もすのん
提出日時 2024-05-20 14:26:05
言語 C#
(.NET 8.0.404)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 242 bytes
コンパイル時間 8,019 ms
コンパイル使用メモリ 165,480 KB
実行使用メモリ 182,932 KB
最終ジャッジ日時 2024-12-20 17:49:31
合計ジャッジ時間 8,648 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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