結果

問題 No.379 五円硬貨
ユーザー sasukesasuke
提出日時 2016-06-20 17:49:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 302 bytes
コンパイル時間 3,379 ms
コンパイル使用メモリ 74,044 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-10-11 16:44:20
合計ジャッジ時間 6,585 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
39,860 KB
testcase_01 AC 124 ms
41,036 KB
testcase_02 AC 124 ms
41,480 KB
testcase_03 AC 129 ms
41,036 KB
testcase_04 AC 126 ms
40,984 KB
testcase_05 AC 127 ms
40,860 KB
testcase_06 WA -
testcase_07 AC 124 ms
41,152 KB
testcase_08 AC 123 ms
41,196 KB
testcase_09 WA -
testcase_10 AC 114 ms
40,208 KB
testcase_11 WA -
testcase_12 AC 114 ms
40,032 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 115 ms
40,064 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		long N =sc.nextLong();
		long G =sc.nextLong();
		long V =sc.nextLong();
		int maisu=(int)N/5;
		long guramu=maisu * G;
		long noudo= guramu/V;
		System.out.println(noudo);
	}
}
0