結果

問題 No.83 最大マッチング
ユーザー waganecowaganeco
提出日時 2020-03-13 04:00:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 338 ms / 5,000 ms
コード長 741 bytes
コンパイル時間 3,993 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 45,640 KB
最終ジャッジ日時 2024-11-20 23:23:53
合計ジャッジ時間 6,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,484 KB
testcase_01 AC 130 ms
41,380 KB
testcase_02 AC 134 ms
41,444 KB
testcase_03 AC 134 ms
40,988 KB
testcase_04 AC 130 ms
41,148 KB
testcase_05 AC 117 ms
39,996 KB
testcase_06 AC 131 ms
41,176 KB
testcase_07 AC 132 ms
41,468 KB
testcase_08 AC 119 ms
39,996 KB
testcase_09 AC 162 ms
45,612 KB
testcase_10 AC 253 ms
45,632 KB
testcase_11 AC 333 ms
45,640 KB
testcase_12 AC 338 ms
45,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No83 {

	public static void main(String[] args) {
		

		int n;
		
		Scanner sc = new Scanner(System.in);
		n = Integer.parseInt(sc.next());
		sc.close();
		
		
		No83Solver sl = new No83Solver();
		
		sl.maxnum(n);

		
		
	}

}

class No83Solver{
	
	final int NINE = 6;
	final int EIGHT = 7;
	final int SEVEN = 3;
	final int SIX = 6;
	final int FIVE = 5;
	final int FOUR = 4;
	final int THREE = 5;
	final int TWO = 5;
	final int ONE = 2;
	final int ZERO = 6;
	
	
	
	public void maxnum(int n){
		
		String numstring = "";
		
		if (n % 2 == 1) {
			numstring = "7";
			n = n - SEVEN;
		}
		while(n > 0) {
			numstring = numstring + "1";
			n = n - ONE;
		}
		
		
		System.out.println(numstring);
	}
	
}
0