結果

問題 No.83 最大マッチング
ユーザー YamaKasaYamaKasa
提出日時 2018-04-19 16:13:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 404 ms / 5,000 ms
コード長 445 bytes
コンパイル時間 2,122 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 63,604 KB
最終ジャッジ日時 2024-06-27 04:50:03
合計ジャッジ時間 5,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,080 KB
testcase_01 AC 128 ms
54,100 KB
testcase_02 AC 120 ms
53,128 KB
testcase_03 AC 114 ms
53,040 KB
testcase_04 AC 125 ms
54,232 KB
testcase_05 AC 129 ms
54,204 KB
testcase_06 AC 116 ms
53,128 KB
testcase_07 AC 131 ms
53,844 KB
testcase_08 AC 131 ms
54,176 KB
testcase_09 AC 229 ms
57,488 KB
testcase_10 AC 359 ms
63,424 KB
testcase_11 AC 404 ms
63,604 KB
testcase_12 AC 363 ms
58,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	public static void main(String[] args) {
		//System.out.println("数字");
		Scanner scanner = new Scanner(System.in);
		int N = scanner.nextInt();
		scanner.close();
		if(N % 2 == 0) {
			int k = N / 2;
			for(int i = 0; i < k; i++) {
				System.out.print("1");
			}
		}else {
			System.out.print("7");
			int k = N / 2;
			for(int i = 0; i < k - 1; i++) {
				System.out.print("1");
			}
		}
	}
}
0