結果

問題 No.83 最大マッチング
ユーザー ぴろずぴろず
提出日時 2014-12-02 23:30:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 167 ms / 5,000 ms
コード長 380 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 78,120 KB
実行使用メモリ 41,280 KB
最終ジャッジ日時 2024-06-11 07:43:33
合計ジャッジ時間 4,089 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,016 KB
testcase_01 AC 115 ms
41,224 KB
testcase_02 AC 113 ms
40,980 KB
testcase_03 AC 112 ms
40,852 KB
testcase_04 AC 100 ms
39,960 KB
testcase_05 AC 110 ms
40,972 KB
testcase_06 AC 117 ms
41,280 KB
testcase_07 AC 102 ms
39,996 KB
testcase_08 AC 121 ms
41,112 KB
testcase_09 AC 106 ms
40,480 KB
testcase_10 AC 121 ms
41,260 KB
testcase_11 AC 167 ms
41,256 KB
testcase_12 AC 123 ms
41,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no083;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		StringBuilder sb = new StringBuilder();
		if (n%2 == 1) {
			sb.append('7');
			n -= 3;
		}
		while(n >= 2) {
			sb.append('1');
			n -= 2;
		}
		System.out.println(sb.toString());
	}

}
0