結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-28 20:52:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 394 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 1,947 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 51,060 KB
最終ジャッジ日時 2024-05-05 14:40:52
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,348 KB
testcase_01 AC 119 ms
40,760 KB
testcase_02 AC 122 ms
41,544 KB
testcase_03 AC 120 ms
41,320 KB
testcase_04 AC 106 ms
40,348 KB
testcase_05 AC 116 ms
41,244 KB
testcase_06 AC 116 ms
41,448 KB
testcase_07 AC 114 ms
40,952 KB
testcase_08 AC 106 ms
40,432 KB
testcase_09 AC 203 ms
41,880 KB
testcase_10 AC 345 ms
50,092 KB
testcase_11 AC 387 ms
50,164 KB
testcase_12 AC 394 ms
51,060 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();
		if(n%2==1){
			System.out.print("7");
			n-=3;
		}
		for(int i=0;i<n/2;i++){
			System.out.print("1");
		}
		System.out.println();
	}
}
0