結果

問題 No.83 最大マッチング
ユーザー r.suzukir.suzuki
提出日時 2016-01-14 23:45:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 710 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 76,572 KB
実行使用メモリ 54,292 KB
最終ジャッジ日時 2024-09-19 19:05:00
合計ジャッジ時間 5,456 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,292 KB
testcase_01 AC 109 ms
52,968 KB
testcase_02 AC 121 ms
53,984 KB
testcase_03 AC 123 ms
53,808 KB
testcase_04 AC 119 ms
53,944 KB
testcase_05 AC 109 ms
52,992 KB
testcase_06 AC 125 ms
54,036 KB
testcase_07 AC 116 ms
53,092 KB
testcase_08 AC 126 ms
54,196 KB
testcase_09 AC 132 ms
54,192 KB
testcase_10 AC 118 ms
53,196 KB
testcase_11 AC 129 ms
53,660 KB
testcase_12 AC 126 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

enum Type{
	EVEN,ODD;
}

class Counter{
	int match;
	Type type;
	StringBuilder ans;
	
	public Counter(int i){
		this.match = i;
		if(match%2 == 0)
			this.type = Type.EVEN;
		else
			this.type = Type.ODD;
		ans = new StringBuilder();
	}
	
	public void lineUpOne(){
		for(int i = 0;i < this.match/2;i++){
			this.ans.append('1');
		}
	}
	
	public void changeTheHead(){
		if(this.type.equals(Type.ODD))
			this.ans.setCharAt(0,'7');
	}
}

public class No_83_2{
	public static void main(String[] args){
		java.util.Scanner sc = new java.util.Scanner(System.in);
		
		Counter counter = new Counter(sc.nextInt());
		
		counter.lineUpOne();
		
		counter.changeTheHead();
		
		System.out.println(counter.ans);
		
	}
}
0