結果

問題 No.83 最大マッチング
ユーザー wf4n9wf4n9
提出日時 2017-10-12 16:33:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-11-17 10:50:24
合計ジャッジ時間 4,829 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,136 KB
testcase_01 AC 117 ms
40,384 KB
testcase_02 AC 123 ms
41,112 KB
testcase_03 AC 108 ms
39,976 KB
testcase_04 AC 111 ms
40,064 KB
testcase_05 AC 125 ms
41,152 KB
testcase_06 AC 127 ms
41,364 KB
testcase_07 AC 122 ms
40,840 KB
testcase_08 AC 125 ms
41,108 KB
testcase_09 AC 128 ms
41,076 KB
testcase_10 AC 131 ms
41,408 KB
testcase_11 AC 132 ms
41,500 KB
testcase_12 AC 125 ms
41,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String... args) {
		Scanner sc = new Scanner(System.in);
		int matchQty = sc.nextInt();
		System.out.println(matchNum(matchQty));
	}

	public static String matchNum(int matchQty) {


		StringBuilder sb = new StringBuilder("");
		if (matchQty % 2 == 0) {
			for (int i = 0; i < matchQty / 2; i++) {
				sb.append("1");
			}
		} else {
			sb.append("7");
			matchQty -= 3;
			for (int i = 0; i < matchQty / 2; i++) {
				sb.append("1");
			}
		}
		return sb.toString();

	}
}
0