結果
問題 | No.83 最大マッチング |
ユーザー | キョウチク |
提出日時 | 2020-07-17 13:46:29 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 282 bytes |
コンパイル時間 | 3,078 ms |
コンパイル使用メモリ | 74,944 KB |
実行使用メモリ | 36,820 KB |
最終ジャッジ日時 | 2024-05-06 02:21:58 |
合計ジャッジ時間 | 4,068 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
public class temp{ public static void main(String[] args){ int n=Integer.parseInt(args[0]); String s=""; if(n%2==1){ n-=3; s="7"; } n/=2; for(int i=0;i<n;i++) s=s+"1"; System.out.println(s); } }