結果
問題 | No.591 (^o^)/ |
ユーザー | mban |
提出日時 | 2017-11-11 00:56:59 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,025 bytes |
コンパイル時間 | 1,063 ms |
コンパイル使用メモリ | 110,820 KB |
実行使用メモリ | 26,004 KB |
最終ジャッジ日時 | 2024-11-24 16:30:02 |
合計ジャッジ時間 | 1,881 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
23,828 KB |
testcase_01 | AC | 21 ms
26,000 KB |
testcase_02 | AC | 22 ms
23,920 KB |
testcase_03 | AC | 21 ms
23,660 KB |
testcase_04 | AC | 22 ms
23,920 KB |
testcase_05 | AC | 22 ms
23,728 KB |
testcase_06 | AC | 21 ms
23,536 KB |
testcase_07 | AC | 21 ms
21,680 KB |
testcase_08 | AC | 22 ms
26,004 KB |
testcase_09 | AC | 21 ms
24,040 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; using System.Collections.Generic; using System.Linq; using System.IO; class Scanner { private string[] Line; private int Index; public Scanner() { Line = new string[0]; Index = 0; } public string Next() { if (Index >= Line.Length) { Line = Console.ReadLine().Split(' '); Index = 0; } var ret = Line[Index]; Index++; return ret; } public int NextInt() { return int.Parse(Next()); } } struct S { public int Num, Sum; public S(int num, int sum) { this.Num = num; this.Sum = sum; } } class Program { string a, b; private void Scan() { var sc = new Scanner(); a = sc.Next(); b = sc.Next(); } public void Solve() { Scan(); Console.WriteLine("({0}{1}{0})/", a, b); } static public void Main() { new Program().Solve(); } }