結果
問題 | No.83 最大マッチング |
ユーザー | Pump0129 |
提出日時 | 2018-04-23 10:06:51 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 377 ms / 5,000 ms |
コード長 | 634 bytes |
コンパイル時間 | 2,393 ms |
コンパイル使用メモリ | 73,388 KB |
実行使用メモリ | 51,116 KB |
最終ジャッジ日時 | 2024-06-27 14:02:37 |
合計ジャッジ時間 | 4,283 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
36,856 KB |
testcase_01 | AC | 49 ms
36,772 KB |
testcase_02 | AC | 49 ms
36,864 KB |
testcase_03 | AC | 50 ms
36,772 KB |
testcase_04 | AC | 49 ms
36,964 KB |
testcase_05 | AC | 52 ms
36,588 KB |
testcase_06 | AC | 51 ms
36,768 KB |
testcase_07 | AC | 50 ms
37,016 KB |
testcase_08 | AC | 49 ms
36,664 KB |
testcase_09 | AC | 127 ms
38,740 KB |
testcase_10 | AC | 321 ms
50,968 KB |
testcase_11 | AC | 377 ms
51,116 KB |
testcase_12 | AC | 360 ms
50,756 KB |
ソースコード
package net.ipipip0129.yukicoder.no83; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int mNumber = Integer.parseInt(br.readLine()); if (mNumber % 2 == 1) { System.out.print(7); mNumber -= 3; } for (int i = 0; i < mNumber / 2; i++) { System.out.print(1); } System.out.println(); br.close(); } }