結果

問題 No.83 最大マッチング
ユーザー omc-testomc-test
提出日時 2016-08-05 14:30:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 281 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 3,400 ms
コンパイル使用メモリ 81,024 KB
実行使用メモリ 43,176 KB
最終ジャッジ日時 2024-11-07 00:12:03
合計ジャッジ時間 5,510 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
37,192 KB
testcase_01 AC 63 ms
37,192 KB
testcase_02 AC 62 ms
37,284 KB
testcase_03 AC 61 ms
37,192 KB
testcase_04 AC 59 ms
37,388 KB
testcase_05 AC 59 ms
37,288 KB
testcase_06 AC 60 ms
37,192 KB
testcase_07 AC 61 ms
37,368 KB
testcase_08 AC 60 ms
37,136 KB
testcase_09 AC 81 ms
42,256 KB
testcase_10 AC 186 ms
42,940 KB
testcase_11 AC 281 ms
43,128 KB
testcase_12 AC 274 ms
43,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class No0083 {
	public static void main(String[] args){
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))){
			int n = Integer.parseInt(br.readLine());
			String str = new String();
			for(int i=0; i<n/2-1; i++){
				str += 1;
			}
			if(n%2 == 0){
				str += 1;
			}else{
				str = 7 + str;
			}
			System.out.println(str);
		}catch(IOException e){
			e.printStackTrace();
		}
	}
}
0