結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー RabbitCPRabbitCP
提出日時 2015-08-04 01:27:51
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 1,676 ms
コンパイル使用メモリ 143,664 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-09-02 20:18:41
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

/*---------------------
 import
-----------------------*/
import std.stdio;
import std.string;
import std.conv;
import std.array;

/*---------------------
 main
-----------------------*/
int main(string[] args)
{
	//A+B
	string[] input;
	int a, b, ans;
	input = split(readln());
	a = to!int(input[0]);
	b = to!int(input[1]);
	ans = a + b;
	
	//s
	string s = input[2];
	
	//output
	writef("%d %s", ans, s);
	
	return 0;
}
0