結果

問題 No.83 最大マッチング
ユーザー marumaru
提出日時 2017-09-25 11:21:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 3,759 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 54,324 KB
最終ジャッジ日時 2024-11-14 13:17:02
合計ジャッジ時間 6,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,324 KB
testcase_01 AC 131 ms
54,148 KB
testcase_02 AC 132 ms
54,140 KB
testcase_03 AC 130 ms
54,272 KB
testcase_04 AC 133 ms
54,296 KB
testcase_05 AC 134 ms
54,020 KB
testcase_06 AC 130 ms
54,228 KB
testcase_07 AC 132 ms
54,000 KB
testcase_08 AC 133 ms
54,172 KB
testcase_09 AC 140 ms
54,200 KB
testcase_10 AC 130 ms
52,916 KB
testcase_11 AC 157 ms
54,108 KB
testcase_12 AC 139 ms
54,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Macchi {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int n = scan.nextInt();
		int one = 0;
		int seven = 0;

		if(n%2==0) {
			one = n/2;
		}else {
			seven = 1;
			one = (n-3)/2;
		}

		StringBuilder sb = new StringBuilder();
		if(seven==1) {
			sb.append(7);
		}
		for(int i=0; i<one; i++) {
			sb.append(1);
		}
		System.out.println(String.valueOf(sb));
	}

}
0