結果

問題 No.83 最大マッチング
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 04:35:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 559 bytes
コンパイル時間 2,055 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-11-07 11:01:49
合計ジャッジ時間 4,437 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
40,084 KB
testcase_01 AC 126 ms
40,900 KB
testcase_02 AC 127 ms
41,208 KB
testcase_03 AC 126 ms
40,964 KB
testcase_04 AC 126 ms
41,004 KB
testcase_05 AC 126 ms
41,292 KB
testcase_06 AC 112 ms
39,800 KB
testcase_07 AC 111 ms
40,016 KB
testcase_08 AC 124 ms
40,920 KB
testcase_09 AC 133 ms
41,120 KB
testcase_10 AC 135 ms
41,176 KB
testcase_11 AC 137 ms
41,716 KB
testcase_12 AC 136 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		if (n==2) {System.out.println(1);}
		else if (n==3) {System.out.println(7);}
		else {
			int one = 0;
			int sev = 0;
			if (n%2==0) {
				one = n/2;
				sev = 0;
			}
			else {
				one = n/2-1;
				sev = 1;
			}
			StringBuilder sb = new StringBuilder("");
			for (int i=0; i<sev; i++) {
				sb.append("7");
			}
			for (int i=0; i<one; i++) {
				sb.append("1");
			}
			System.out.println(sb);
		}
	}
}
0