結果

問題 No.83 最大マッチング
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-11 04:33:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 559 bytes
コンパイル時間 2,377 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 41,716 KB
最終ジャッジ日時 2024-11-07 10:55:54
合計ジャッジ時間 4,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,356 KB
testcase_01 AC 125 ms
41,188 KB
testcase_02 AC 124 ms
41,352 KB
testcase_03 WA -
testcase_04 AC 126 ms
40,976 KB
testcase_05 WA -
testcase_06 AC 125 ms
41,068 KB
testcase_07 WA -
testcase_08 AC 128 ms
41,252 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 137 ms
41,716 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<one; i++) {
				sb.append("1");
			}
			for (int i=0; i<sev; i++) {
				sb.append("7");
			}
			System.out.println(sb);
		}
	}
}
0