結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | AreTrash |
提出日時 | 2019-04-04 15:14:19 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 31 ms / 1,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 3,515 ms |
コンパイル使用メモリ | 103,424 KB |
実行使用メモリ | 18,688 KB |
最終ジャッジ日時 | 2024-12-25 23:07:54 |
合計ジャッジ時間 | 2,753 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
18,688 KB |
testcase_01 | AC | 31 ms
18,560 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]}"); } } }