結果

問題 No.83 最大マッチング
ユーザー shinshin
提出日時 2022-05-17 15:00:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 79 ms / 5,000 ms
コード長 807 bytes
コンパイル時間 4,210 ms
コンパイル使用メモリ 75,992 KB
実行使用メモリ 38,024 KB
最終ジャッジ日時 2024-09-15 09:38:19
合計ジャッジ時間 5,113 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,736 KB
testcase_01 AC 51 ms
36,704 KB
testcase_02 AC 51 ms
36,308 KB
testcase_03 AC 52 ms
36,744 KB
testcase_04 AC 51 ms
36,948 KB
testcase_05 AC 52 ms
36,988 KB
testcase_06 AC 51 ms
36,904 KB
testcase_07 AC 52 ms
36,980 KB
testcase_08 AC 52 ms
36,668 KB
testcase_09 AC 55 ms
37,112 KB
testcase_10 AC 77 ms
37,560 KB
testcase_11 AC 79 ms
37,820 KB
testcase_12 AC 71 ms
38,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No83 {

	public static void main(String[] args) throws IOException{
		//最大マッチング
		int N = Integer.parseInt(readStr()[0]);
		StringBuilder sb = new StringBuilder();
		
		if(N % 2 == 1){
			sb.append("7");
			N -= 3;
		}
		
		for(int i = 0 , m = N / 2;i < m;i++) {
			sb.append("1");
		}
		
		System.out.println(sb);

	}
	
	public static String[] readStr() throws IOException{
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		ArrayList<String> list = new ArrayList<>();

		do {
			list.add(br.readLine());
		}while(br.ready());

		br.close();

		String[] text = new String[list.size()];
		list.toArray(text);

		return text;

	}

}
0