結果

問題 No.379 五円硬貨
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-11 19:00:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 54,508 KB
最終ジャッジ日時 2024-05-04 02:14:38
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,144 KB
testcase_01 AC 119 ms
41,188 KB
testcase_02 AC 117 ms
41,232 KB
testcase_03 AC 118 ms
41,700 KB
testcase_04 AC 120 ms
41,236 KB
testcase_05 AC 118 ms
41,460 KB
testcase_06 WA -
testcase_07 AC 117 ms
41,660 KB
testcase_08 AC 116 ms
41,124 KB
testcase_09 WA -
testcase_10 AC 112 ms
41,512 KB
testcase_11 WA -
testcase_12 AC 111 ms
41,552 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 113 ms
41,024 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