結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | AreTrash |
提出日時 | 2019-04-04 15:14:19 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 26 ms / 1,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 5,306 ms |
コンパイル使用メモリ | 103,040 KB |
実行使用メモリ | 18,944 KB |
最終ジャッジ日時 | 2024-06-07 16:21:09 |
合計ジャッジ時間 | 1,380 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
18,816 KB |
testcase_01 | AC | 26 ms
18,944 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
namespace No3042 { using C = System.Console; using System.Linq; class P { static void Main() { var I = C.In.ReadToEnd().Split('\n'); C.WriteLine($"{I[0].Split(' ').Select(int.Parse).Sum()} {I[1]}"); } } }