結果

問題 No.83 最大マッチング
ユーザー papipenpapipen
提出日時 2017-04-11 20:28:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 420 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 74,156 KB
実行使用メモリ 52,844 KB
最終ジャッジ日時 2024-07-18 09:06:08
合計ジャッジ時間 5,335 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,116 KB
testcase_01 AC 129 ms
41,564 KB
testcase_02 AC 126 ms
41,256 KB
testcase_03 AC 130 ms
41,276 KB
testcase_04 AC 127 ms
41,276 KB
testcase_05 AC 126 ms
41,216 KB
testcase_06 AC 128 ms
41,252 KB
testcase_07 AC 128 ms
41,524 KB
testcase_08 AC 127 ms
41,724 KB
testcase_09 AC 227 ms
45,324 KB
testcase_10 AC 369 ms
52,264 KB
testcase_11 AC 420 ms
52,572 KB
testcase_12 AC 420 ms
52,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class N083{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		if(n % 2 == 0){
			for(int i = 0; i < n / 2; i++){
				System.out.print(1);
			}
		}else{
			System.out.print(7);
			for(int i = 0; i < n / 2 - 1; i++){
				System.out.print(1);
			}
		}
		System.out.println();
	}
}
0