結果

問題 No.83 最大マッチング
ユーザー htensaihtensai
提出日時 2019-12-06 08:55:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 5,000 ms
コード長 283 bytes
コンパイル時間 2,223 ms
コンパイル使用メモリ 74,436 KB
実行使用メモリ 41,784 KB
最終ジャッジ日時 2024-06-02 09:12:37
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
41,272 KB
testcase_01 AC 102 ms
41,748 KB
testcase_02 AC 94 ms
41,632 KB
testcase_03 AC 104 ms
41,272 KB
testcase_04 AC 104 ms
41,636 KB
testcase_05 AC 102 ms
41,108 KB
testcase_06 AC 110 ms
40,432 KB
testcase_07 AC 104 ms
41,720 KB
testcase_08 AC 103 ms
40,088 KB
testcase_09 AC 94 ms
41,400 KB
testcase_10 AC 96 ms
41,488 KB
testcase_11 AC 110 ms
41,784 KB
testcase_12 AC 106 ms
41,528 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