結果
問題 | No.560 ふしぎなナップサック |
ユーザー | りあん |
提出日時 | 2016-05-23 20:59:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 29 ms / 2,000 ms |
コード長 | 970 bytes |
コンパイル時間 | 1,847 ms |
コンパイル使用メモリ | 113,548 KB |
実行使用メモリ | 25,908 KB |
最終ジャッジ日時 | 2024-10-07 03:18:43 |
合計ジャッジ時間 | 3,077 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
25,908 KB |
testcase_01 | AC | 26 ms
19,840 KB |
testcase_02 | AC | 25 ms
19,584 KB |
testcase_03 | AC | 25 ms
18,944 KB |
testcase_04 | AC | 24 ms
19,584 KB |
testcase_05 | AC | 24 ms
19,712 KB |
testcase_06 | AC | 25 ms
19,712 KB |
testcase_07 | AC | 25 ms
19,584 KB |
testcase_08 | AC | 24 ms
19,584 KB |
testcase_09 | AC | 26 ms
19,584 KB |
testcase_10 | AC | 27 ms
19,584 KB |
testcase_11 | AC | 26 ms
19,456 KB |
testcase_12 | AC | 29 ms
19,712 KB |
testcase_13 | AC | 27 ms
19,584 KB |
testcase_14 | AC | 28 ms
19,712 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; class Program { static void Main() { var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; var sc = new Scan(); int m, n; sc.Multi(out m, out n); sw.WriteLine(m + n / 3.0); sw.Flush(); } } class Scan { public int Int { get { return int.Parse(Str); } } public long Long { get { return long.Parse(Str); } } public string Str { get { return Console.ReadLine().Trim(); } } public int[] IntArr { get { return StrArr.Select(int.Parse).ToArray(); } } public long[] LongArr { get { return StrArr.Select(long.Parse).ToArray(); } } public double[] DoubleArr { get { return StrArr.Select(double.Parse).ToArray(); } } public string[] StrArr { get { return Str.Split(); } } public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; } }