結果

問題 No.83 最大マッチング
ユーザー kmtrc130kmtrc130
提出日時 2017-04-28 16:10:09
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 101,800 KB
実行使用メモリ 22,808 KB
最終ジャッジ日時 2023-10-11 18:54:17
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
18,780 KB
testcase_01 AC 55 ms
20,748 KB
testcase_02 AC 54 ms
20,604 KB
testcase_03 AC 55 ms
20,788 KB
testcase_04 WA -
testcase_05 AC 55 ms
20,704 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
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.Linq;

class Program
{
    static void Main(string[] args)
    {
        int N = int.Parse(Console.ReadLine());

        int threeMs = 0;

        threeMs = N / 3;
        N %= 3;
        if (0 < N % 2)
        {
            threeMs -= 1;
            N += 3;
        }
        for (int i = 0; i < threeMs; i++) { Console.Write("7"); }
        for (int i = 0; i < N / 2; i++) { Console.Write("1"); }

        Console.WriteLine();
    }
}
0