結果

問題 No.83 最大マッチング
ユーザー koukonkokoukonko
提出日時 2015-12-10 13:19:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 271 ms / 5,000 ms
コード長 636 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-15 07:29:39
合計ジャッジ時間 4,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
50,336 KB
testcase_01 AC 61 ms
50,316 KB
testcase_02 AC 62 ms
50,192 KB
testcase_03 AC 62 ms
50,380 KB
testcase_04 AC 62 ms
50,436 KB
testcase_05 AC 62 ms
49,792 KB
testcase_06 AC 60 ms
50,312 KB
testcase_07 AC 63 ms
50,304 KB
testcase_08 AC 61 ms
50,188 KB
testcase_09 AC 82 ms
53,380 KB
testcase_10 AC 187 ms
53,876 KB
testcase_11 AC 271 ms
54,392 KB
testcase_12 AC 268 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) {
		BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));

		try {

			int count = Integer.parseInt(buff.readLine());
			String ans = "";
			while(count > 0){
				if(count == 3){
					ans = 7 + ans;
					break;
				}else{
					count -= 2;
					ans += 1;
				}
			}
			System.out.println(ans);
		} catch (NumberFormatException e) {
			e.getStackTrace();
		} catch (IOException e) {
			e.getStackTrace();
		} catch (Exception e) {
			e.getStackTrace();
		}
	}
}
0