結果
問題 | No.83 最大マッチング |
ユーザー | ちよちゃん |
提出日時 | 2016-05-30 11:06:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 323 ms / 5,000 ms |
コード長 | 895 bytes |
コンパイル時間 | 3,363 ms |
コンパイル使用メモリ | 76,240 KB |
実行使用メモリ | 56,968 KB |
最終ジャッジ日時 | 2024-10-07 17:58:11 |
合計ジャッジ時間 | 6,479 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,076 KB |
testcase_01 | AC | 121 ms
52,772 KB |
testcase_02 | AC | 125 ms
53,992 KB |
testcase_03 | AC | 124 ms
54,412 KB |
testcase_04 | AC | 125 ms
53,960 KB |
testcase_05 | AC | 125 ms
54,124 KB |
testcase_06 | AC | 123 ms
53,872 KB |
testcase_07 | AC | 124 ms
54,020 KB |
testcase_08 | AC | 125 ms
53,988 KB |
testcase_09 | AC | 147 ms
56,968 KB |
testcase_10 | AC | 228 ms
56,684 KB |
testcase_11 | AC | 323 ms
56,720 KB |
testcase_12 | AC | 315 ms
56,808 KB |
ソースコード
package yukicoder; import java.util.Scanner; public class Yuki83{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int num = scan.nextInt(); scan.close(); int two_num = 0; int three_num = 0; String ans = ""; if( num % 2 == 0){ two_num = num / 2; ans = strNumbers(two_num,three_num); } else if(num % 2 == 1){ two_num = (num / 2) -1; three_num ++; ans = strNumbers(two_num,three_num); } System.out.println(ans); } private static String strNumbers(int two_num,int three_num){ String ans = ""; if(three_num != 0) { for(int i =0; i < three_num; i++ ) { ans += "7"; } for(int i =0; i < two_num; i++ ) { ans += "1"; } } else { for(int i =0; i < two_num; i++ ) { ans += "1"; } for(int i =0; i < three_num; i++ ) { ans += "7"; } } return ans; } }