結果

問題 No.83 最大マッチング
ユーザー ieneko18ieneko18
提出日時 2016-11-28 20:52:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 360 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 1,940 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 49,596 KB
最終ジャッジ日時 2024-11-27 12:45:30
合計ジャッジ時間 4,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,088 KB
testcase_01 AC 117 ms
41,244 KB
testcase_02 AC 109 ms
41,008 KB
testcase_03 AC 100 ms
40,116 KB
testcase_04 AC 100 ms
39,608 KB
testcase_05 AC 102 ms
39,704 KB
testcase_06 AC 99 ms
40,128 KB
testcase_07 AC 102 ms
39,896 KB
testcase_08 AC 113 ms
41,116 KB
testcase_09 AC 225 ms
44,712 KB
testcase_10 AC 329 ms
49,596 KB
testcase_11 AC 360 ms
49,560 KB
testcase_12 AC 337 ms
49,280 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