結果
| 問題 |
No.83 最大マッチング
|
| コンテスト | |
| ユーザー |
キョウチク
|
| 提出日時 | 2021-09-15 04:58:37 |
| 言語 | Java (openjdk 23) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 327 bytes |
| コンパイル時間 | 2,358 ms |
| コンパイル使用メモリ | 73,788 KB |
| 実行使用メモリ | 50,356 KB |
| 最終ジャッジ日時 | 2024-06-28 01:48:44 |
| 合計ジャッジ時間 | 3,230 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 10 |
ソースコード
class Test{
public static void main(String[] args){
int mattiN;
mattiN=Integer.parseInt(args[0]);
if(mattiN%2!=0){
System.out.print("7");
mattiN-=3;
}
for(;mattiN>0;mattiN-=2){
System.out.print("1");
}
System.out.println();
}
}
キョウチク