結果
| 問題 |
No.571 3人兄弟(その2)
|
| コンテスト | |
| ユーザー |
ThhG_9l3
|
| 提出日時 | 2018-05-05 16:47:48 |
| 言語 | cLay (20241019-1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 614 bytes |
| コンパイル時間 | 1,670 ms |
| コンパイル使用メモリ | 167,424 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-05 13:01:19 |
| 合計ジャッジ時間 | 2,237 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 12 |
ソースコード
/*package yukikoda;
import java.util.*;
public class brother{
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
ArrayList<Integer> height = new ArrayList<Integer>();
ArrayList<Integer> weight = new ArrayList<Integer>();
int[] rank = new int[3];
for(int i=0; i<3; i++) {
height.add(sc.nextInt());
}
for(int j=0; j<3; j++) {
weight.add(sc.nextInt());
}
rank = orderRank(height,weight);
System.out.println(rank);
}
private static int[] orderRank(ArrayList<Integer> height, ArrayList<Integer> weight) {
Collections.sort(height);
return ;
}
}*/
ThhG_9l3