結果
問題 | No.83 最大マッチング |
ユーザー | tsunabit |
提出日時 | 2018-08-19 14:13:05 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 522 bytes |
コンパイル時間 | 3,454 ms |
コンパイル使用メモリ | 76,516 KB |
実行使用メモリ | 50,908 KB |
最終ジャッジ日時 | 2024-11-17 05:01:06 |
合計ジャッジ時間 | 6,761 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 129 ms
41,056 KB |
testcase_01 | WA | - |
testcase_02 | AC | 109 ms
40,108 KB |
testcase_03 | WA | - |
testcase_04 | AC | 124 ms
41,068 KB |
testcase_05 | WA | - |
testcase_06 | AC | 118 ms
41,304 KB |
testcase_07 | WA | - |
testcase_08 | AC | 119 ms
41,360 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 392 ms
50,908 KB |
ソースコード
import java.util.*; import java.util.stream.Stream; import java.time.*; import java.time.format.*; public class No83 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); if(n%2 == 0) { for(int i = 0; i < n/2 ;i++) { System.out.print("1"); } }else { System.out.print("7"); for(int i = 0 ; i < n/2 ; i++) { System.out.print("1"); } } } }