結果
問題 | No.83 最大マッチング |
ユーザー | wf4n9 |
提出日時 | 2017-10-12 13:28:09 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 504 bytes |
コンパイル時間 | 2,955 ms |
コンパイル使用メモリ | 76,992 KB |
実行使用メモリ | 45,456 KB |
最終ジャッジ日時 | 2024-11-17 10:48:42 |
合計ジャッジ時間 | 5,459 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 112 ms
40,200 KB |
testcase_01 | AC | 124 ms
40,996 KB |
testcase_02 | AC | 124 ms
41,164 KB |
testcase_03 | AC | 125 ms
41,032 KB |
testcase_04 | AC | 124 ms
41,184 KB |
testcase_05 | AC | 125 ms
41,000 KB |
testcase_06 | AC | 113 ms
40,156 KB |
testcase_07 | AC | 124 ms
41,308 KB |
testcase_08 | AC | 120 ms
40,976 KB |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
import java.util.Scanner; class Main { public static void main(String... args) { Scanner sc = new Scanner(System.in); int matchQty = sc.nextInt(); System.out.println(matchNum(matchQty)); } public static int matchNum(int matchQty) { String ans = ""; if (matchQty % 2 == 0) { for (int i = 0; i < matchQty / 2; i++) { ans += "1"; } } else { ans += "7"; matchQty -= 3; for (int i = 0; i < matchQty / 2; i++) { ans += "1"; } } return Integer.parseInt(ans); } }