結果

問題 No.83 最大マッチング
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-15 09:52:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 5,000 ms
コード長 332 bytes
コンパイル時間 3,208 ms
コンパイル使用メモリ 77,940 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-06-07 15:44:52
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,056 KB
testcase_01 AC 126 ms
41,364 KB
testcase_02 AC 121 ms
41,212 KB
testcase_03 AC 104 ms
39,916 KB
testcase_04 AC 112 ms
40,420 KB
testcase_05 AC 122 ms
41,176 KB
testcase_06 AC 118 ms
41,044 KB
testcase_07 AC 119 ms
41,376 KB
testcase_08 AC 112 ms
40,448 KB
testcase_09 AC 126 ms
41,356 KB
testcase_10 AC 125 ms
40,928 KB
testcase_11 AC 143 ms
41,540 KB
testcase_12 AC 152 ms
41,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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