結果
| 問題 | No.394 ハーフパイプ(1) |
| コンテスト | |
| ユーザー |
yuma_shobon1108
|
| 提出日時 | 2017-01-12 18:28:17 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 347 bytes |
| 記録 | |
| コンパイル時間 | 1,654 ms |
| コンパイル使用メモリ | 83,396 KB |
| 実行使用メモリ | 41,756 KB |
| 最終ジャッジ日時 | 2026-05-28 03:00:28 |
| 合計ジャッジ時間 | 3,263 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 WA * 6 |
ソースコード
import java.util.Scanner;
class Question394
{
public static void main(String[] str)
{
Scanner scan = new Scanner(System.in);
int score[] = new int[6];
double point = 0;
for(int i=0; i<6; i++){
score[i] = scan.nextInt();
}
for(int i=1; i<5; i++){
point += score[i];
}
System.out.printf("%.2f\n",point/4);
}
}
yuma_shobon1108