結果

問題 No.83 最大マッチング
ユーザー kmtrc130
提出日時 2017-04-28 16:10:09
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 958 ms
コンパイル使用メモリ 109,632 KB
実行使用メモリ 27,840 KB
最終ジャッジ日時 2024-09-13 17:48:36
合計ジャッジ時間 2,030 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 2 WA * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
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