結果

問題 No.379 五円硬貨
ユーザー 37zigen37zigen
提出日時 2016-06-17 22:33:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 1,000 ms
コード長 321 bytes
コンパイル時間 2,021 ms
コンパイル使用メモリ 73,712 KB
実行使用メモリ 41,420 KB
最終ジャッジ日時 2024-10-09 16:45:56
合計ジャッジ時間 5,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,768 KB
testcase_01 AC 131 ms
41,200 KB
testcase_02 AC 128 ms
40,772 KB
testcase_03 AC 129 ms
40,768 KB
testcase_04 AC 130 ms
40,916 KB
testcase_05 AC 139 ms
41,176 KB
testcase_06 AC 135 ms
40,848 KB
testcase_07 AC 132 ms
40,916 KB
testcase_08 AC 132 ms
41,120 KB
testcase_09 AC 132 ms
41,024 KB
testcase_10 AC 132 ms
40,964 KB
testcase_11 AC 133 ms
41,172 KB
testcase_12 AC 131 ms
41,120 KB
testcase_13 AC 136 ms
41,244 KB
testcase_14 AC 135 ms
40,984 KB
testcase_15 AC 132 ms
41,420 KB
testcase_16 AC 132 ms
40,904 KB
testcase_17 AC 134 ms
41,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		new Main().solver();
	}
	void solver(){
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int G=sc.nextInt();
		int V=sc.nextInt();
		
		System.out.println((double)(N/5)*(double)G/((double)V));
		
	}
}
0