結果

問題 No.83 最大マッチング
ユーザー spaciaspacia
提出日時 2015-12-19 12:50:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 2,429 ms
コンパイル使用メモリ 75,236 KB
実行使用メモリ 54,672 KB
最終ジャッジ日時 2024-09-16 08:55:32
合計ジャッジ時間 4,732 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
37,320 KB
testcase_01 AC 61 ms
37,104 KB
testcase_02 AC 60 ms
37,248 KB
testcase_03 WA -
testcase_04 AC 59 ms
37,220 KB
testcase_05 WA -
testcase_06 AC 60 ms
37,040 KB
testcase_07 WA -
testcase_08 AC 59 ms
37,236 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 278 ms
43,036 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(ans + add);
	}
}
0