結果

問題 No.83 最大マッチング
ユーザー Mcpu3Mcpu3
提出日時 2018-08-27 18:25:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 408 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 1,910 ms
コンパイル使用メモリ 73,968 KB
実行使用メモリ 52,784 KB
最終ジャッジ日時 2024-07-04 18:26:41
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,324 KB
testcase_01 AC 125 ms
41,312 KB
testcase_02 AC 121 ms
41,532 KB
testcase_03 AC 127 ms
41,568 KB
testcase_04 AC 122 ms
41,124 KB
testcase_05 AC 125 ms
41,568 KB
testcase_06 AC 111 ms
39,912 KB
testcase_07 AC 117 ms
41,448 KB
testcase_08 AC 120 ms
41,304 KB
testcase_09 AC 178 ms
45,576 KB
testcase_10 AC 351 ms
52,236 KB
testcase_11 AC 394 ms
52,644 KB
testcase_12 AC 408 ms
52,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),i;
		sc.close();
		if(n%2==1) {
			System.out.print(7);
			n-=3;
		}
		for(i=0;i<n;i+=2) System.out.print(1);
	}
}
0