結果

問題 No.83 最大マッチング
ユーザー mbanmban
提出日時 2016-11-07 12:33:52
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,106 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 2,813 ms
コンパイル使用メモリ 100,984 KB
実行使用メモリ 44,272 KB
最終ジャッジ日時 2023-08-16 14:18:54
合計ジャッジ時間 8,715 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
20,768 KB
testcase_01 AC 53 ms
22,708 KB
testcase_02 AC 52 ms
22,812 KB
testcase_03 AC 51 ms
22,612 KB
testcase_04 AC 51 ms
20,732 KB
testcase_05 AC 53 ms
20,660 KB
testcase_06 AC 54 ms
18,640 KB
testcase_07 AC 51 ms
22,704 KB
testcase_08 AC 53 ms
20,788 KB
testcase_09 AC 71 ms
42,964 KB
testcase_10 AC 1,098 ms
44,272 KB
testcase_11 AC 2,101 ms
44,180 KB
testcase_12 AC 2,106 ms
44,192 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

class Magatro
{
    static void Main()
    {
        int N = int.Parse(Console.ReadLine());
        string ans = "";
        while (true)
        {
            if (N == 0)
            {
                break;
            }
            if (N == 3)
            {
                ans ="7"+ans;
                N -= 3;
            }
            else
            {
                N -= 2;
                ans+="1";
            }

        }
        Console.WriteLine(ans);
    }
}
0