結果

問題 No.83 最大マッチング
ユーザー boya978boya978
提出日時 2020-03-01 02:31:42
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,920 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 102,016 KB
実行使用メモリ 40,704 KB
最終ジャッジ日時 2024-10-13 20:25:22
合計ジャッジ時間 6,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
public class Hello{
    public static void Main(){
        
        int n = int.Parse(Console.ReadLine());
        string ans="";
        
        while(n>0){
            
            if(n%2==1){
                ans += "7";
                n-=3;
            }
            else{
                ans += "1";
                n-=2;
            }
        }
        
        Console.Write(ans);
    }
}
0