結果

問題 No.83 最大マッチング
ユーザー kimnykimny
提出日時 2017-12-13 10:56:30
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 568 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 99,828 KB
実行使用メモリ 23,296 KB
最終ジャッジ日時 2023-08-21 01:23:25
合計ジャッジ時間 3,870 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
20,936 KB
testcase_01 AC 54 ms
20,964 KB
testcase_02 AC 54 ms
20,924 KB
testcase_03 AC 55 ms
23,036 KB
testcase_04 AC 54 ms
20,928 KB
testcase_05 AC 55 ms
20,936 KB
testcase_06 AC 57 ms
21,064 KB
testcase_07 AC 55 ms
23,200 KB
testcase_08 AC 54 ms
21,228 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace yukicoder_83 {
    class Program {
        static void Main(string[] args) {
            int n = int.Parse(Console.ReadLine());
            int ans = 0;
            int keta = n / 2;
            for (int i = 0; i < keta; i++) {
                ans += (int)Math.Pow(10, i);
            }
            if (n % 2 == 1) ans += 6 * (int)Math.Pow(10, keta - 1);
            Console.WriteLine(ans);
            Console.ReadLine();
        }
    }
}
0