結果

問題 No.83 最大マッチング
ユーザー tentententen
提出日時 2020-11-05 08:24:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 280 bytes
コンパイル時間 1,759 ms
コンパイル使用メモリ 74,932 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-07-22 10:48:51
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,108 KB
testcase_01 AC 112 ms
41,040 KB
testcase_02 AC 104 ms
41,104 KB
testcase_03 AC 114 ms
40,816 KB
testcase_04 AC 115 ms
41,280 KB
testcase_05 AC 116 ms
40,972 KB
testcase_06 AC 122 ms
41,040 KB
testcase_07 AC 117 ms
41,284 KB
testcase_08 AC 116 ms
41,296 KB
testcase_09 AC 119 ms
41,060 KB
testcase_10 AC 119 ms
40,056 KB
testcase_11 AC 109 ms
41,248 KB
testcase_12 AC 122 ms
41,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		char[] arr = new char[n / 2];
		Arrays.fill(arr, '1');
		if (n % 2 == 1) {
		    arr[0] = '7';
		}
		System.out.println(arr);
	}
}
0