結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | Tosuke |
提出日時 | 2016-04-09 12:09:05 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 1 ms / 1,000 ms |
コード長 | 215 bytes |
コンパイル時間 | 586 ms |
コンパイル使用メモリ | 100,860 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-06-12 03:24:20 |
合計ジャッジ時間 | 939 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
ソースコード
import std.stdio, std.conv, std.string, std.range, std.array, std.algorithm; int main() { auto I = readln().strip().split().map!(to!int)().array(); auto S = readln().strip(); writeln(I.sum," ",S); return 0; }