結果

問題 No.83 最大マッチング
ユーザー villachvillach
提出日時 2017-09-19 15:52:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 428 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 3,407 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 52,568 KB
最終ジャッジ日時 2024-11-08 05:36:39
合計ジャッジ時間 6,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,148 KB
testcase_01 AC 130 ms
41,272 KB
testcase_02 AC 129 ms
41,176 KB
testcase_03 AC 131 ms
41,160 KB
testcase_04 AC 129 ms
41,140 KB
testcase_05 AC 130 ms
41,504 KB
testcase_06 AC 128 ms
41,328 KB
testcase_07 AC 133 ms
41,496 KB
testcase_08 AC 131 ms
41,284 KB
testcase_09 AC 249 ms
45,024 KB
testcase_10 AC 365 ms
51,728 KB
testcase_11 AC 427 ms
52,464 KB
testcase_12 AC 428 ms
52,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N83 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long c1 = 0;
		long c2 = 0;
		if(n % 2 == 0){
			c1 = n / 2;
			for(long i = 0;i < c1;++i){
				System.out.print(1);
			}
		}else{
			c1 = n / 2 - 1;
			c2 = 1;
			System.out.print(7);
			for(long i = 0;i < c1;++i){
				System.out.print(1);
			}
		}
	}
}
0