結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,192 KB
testcase_01 AC 52 ms
37,276 KB
testcase_02 AC 49 ms
36,784 KB
testcase_03 AC 50 ms
36,960 KB
testcase_04 WA -
testcase_05 AC 49 ms
37,016 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

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 add = "", ans = "";
		if (n % 3 == 0)
			cnt = n / 3;
		else if (n % 3 == 1) {
			cnt = (n - 4) / 3;
			add = "11";
		} else {
			cnt = n / 3;
			add = "1";
		}
		for (int i = 0; i < cnt; i++)
			ans += "7";
		
		System.out.println(ans + add);
	}
}
0