結果

問題 No.83 最大マッチング
ユーザー spaciaspacia
提出日時 2015-12-19 12:52:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 2,168 ms
コンパイル使用メモリ 75,480 KB
実行使用メモリ 42,856 KB
最終ジャッジ日時 2024-09-16 08:55:36
合計ジャッジ時間 4,068 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,276 KB
testcase_01 AC 53 ms
36,972 KB
testcase_02 AC 55 ms
37,316 KB
testcase_03 AC 53 ms
36,960 KB
testcase_04 AC 55 ms
36,880 KB
testcase_05 AC 55 ms
37,384 KB
testcase_06 AC 52 ms
36,736 KB
testcase_07 AC 55 ms
37,100 KB
testcase_08 AC 55 ms
36,952 KB
testcase_09 AC 72 ms
42,096 KB
testcase_10 AC 174 ms
42,656 KB
testcase_11 AC 265 ms
42,732 KB
testcase_12 AC 258 ms
42,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main155 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		int cnt = 0;
		String ans = "", add = "";
		
		if (n % 2 == 0)
			cnt = n / 2;
		else {
			cnt = (n - 3) / 2;
			add = "7";
		}
		
		for (int i = 0; i < cnt; i++)
			ans += "1";
		
		System.out.println(add + ans);
	}
}
0