結果

問題 No.83 最大マッチング
ユーザー wagasa2wagasa2
提出日時 2018-04-19 13:49:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 328 bytes
コンパイル時間 2,566 ms
コンパイル使用メモリ 74,484 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-06-27 04:45:08
合計ジャッジ時間 4,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,304 KB
testcase_01 AC 128 ms
41,180 KB
testcase_02 AC 126 ms
41,368 KB
testcase_03 AC 125 ms
41,192 KB
testcase_04 AC 127 ms
41,060 KB
testcase_05 AC 125 ms
41,012 KB
testcase_06 AC 127 ms
41,468 KB
testcase_07 AC 127 ms
41,356 KB
testcase_08 AC 131 ms
41,212 KB
testcase_09 AC 119 ms
40,260 KB
testcase_10 AC 133 ms
41,380 KB
testcase_11 AC 137 ms
41,764 KB
testcase_12 AC 138 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		StringBuilder sb = new StringBuilder();

		if(n % 2 == 1){
			sb.append(7);
			n -= 3;
		}
		for(int i = 0; i < n / 2; i++){
			sb.append(1);
		}
		System.out.println(sb);
	}
}
0