結果

問題 No.83 最大マッチング
ユーザー scachescache
提出日時 2014-12-02 23:28:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 5,000 ms
コード長 507 bytes
コンパイル時間 4,321 ms
コンパイル使用メモリ 75,320 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-06-11 07:43:06
合計ジャッジ時間 6,091 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,064 KB
testcase_01 AC 138 ms
53,700 KB
testcase_02 AC 137 ms
54,056 KB
testcase_03 AC 131 ms
53,896 KB
testcase_04 AC 138 ms
53,920 KB
testcase_05 AC 142 ms
53,944 KB
testcase_06 AC 136 ms
54,120 KB
testcase_07 AC 137 ms
53,920 KB
testcase_08 AC 142 ms
54,208 KB
testcase_09 AC 144 ms
54,188 KB
testcase_10 AC 163 ms
54,120 KB
testcase_11 AC 165 ms
54,216 KB
testcase_12 AC 163 ms
54,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main83 {
	public static void main(String[] args) {
		Main83 p = new Main83();
	}

	public Main83() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		
		solve(n);
	}

	public void solve(int n) {
		StringBuilder sb = new StringBuilder();
		if(n%2==0){
			n-=2;
			sb.append('1');
		}else{
			n-=3;
			sb.append('7');
		}
		
		for(int i=n;i>0;i-=2){
			sb.append('1');
		}
		
		System.out.println(sb.toString());
	}

}
0