結果

問題 No.379 五円硬貨
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-11 19:00:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 2,297 ms
コンパイル使用メモリ 74,268 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-11-25 08:20:27
合計ジャッジ時間 5,347 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,196 KB
testcase_01 AC 132 ms
54,084 KB
testcase_02 AC 130 ms
54,340 KB
testcase_03 AC 130 ms
53,508 KB
testcase_04 AC 132 ms
53,660 KB
testcase_05 AC 133 ms
54,228 KB
testcase_06 WA -
testcase_07 AC 132 ms
53,844 KB
testcase_08 AC 131 ms
54,088 KB
testcase_09 WA -
testcase_10 AC 131 ms
53,796 KB
testcase_11 WA -
testcase_12 AC 132 ms
54,064 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
53,712 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question379
{
	public static void main(String[] args)
	{
	
		Scanner scan = new Scanner(System.in);
		
		long yen = scan.nextLong();
		long gas = scan.nextLong();
		long v = scan.nextLong();
		
		long coin = yen / 5;
		long agas = coin * gas;
		double con = agas / v;
		
		System.out.println(con);

	}
}
0