結果

問題 No.9001 標準入出力の練習問題(テスト用)
ユーザー RabbitCPRabbitCP
提出日時 2015-08-04 01:27:51
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 2,199 ms
コンパイル使用メモリ 141,824 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-12 02:41:59
合計ジャッジ時間 2,622 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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