結果

問題 No.83 最大マッチング
ユーザー jimanojimano
提出日時 2017-05-07 17:48:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 546 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 74,116 KB
実行使用メモリ 38,000 KB
最終ジャッジ日時 2024-09-14 14:50:18
合計ジャッジ時間 3,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,728 KB
testcase_01 AC 51 ms
36,780 KB
testcase_02 AC 52 ms
36,328 KB
testcase_03 AC 54 ms
36,848 KB
testcase_04 AC 53 ms
36,980 KB
testcase_05 AC 53 ms
36,856 KB
testcase_06 AC 54 ms
36,864 KB
testcase_07 AC 52 ms
36,780 KB
testcase_08 AC 52 ms
36,600 KB
testcase_09 AC 54 ms
36,788 KB
testcase_10 AC 70 ms
37,552 KB
testcase_11 AC 84 ms
37,928 KB
testcase_12 AC 83 ms
38,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main{
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			int n = Integer.parseInt(br.readLine());
			int sum = 0;
			StringBuilder sb = new StringBuilder();

			if (n % 2 != 0) {
				sb.append(7);
				n -= 3;
			}
			for (int i = 0; i < n / 2; i++) {
				sb.append(1);
			}

			System.out.println(sb);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0