結果
問題 | No.2407 Bouns 2.0 |
ユーザー | tenten |
提出日時 | 2023-08-17 08:10:21 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 47 ms / 2,000 ms |
コード長 | 1,623 bytes |
コンパイル時間 | 2,934 ms |
コンパイル使用メモリ | 92,360 KB |
実行使用メモリ | 37,564 KB |
最終ジャッジ日時 | 2024-05-04 15:00:45 |
合計ジャッジ時間 | 4,224 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
36,880 KB |
testcase_01 | AC | 44 ms
36,988 KB |
testcase_02 | AC | 44 ms
37,192 KB |
testcase_03 | AC | 44 ms
36,912 KB |
testcase_04 | AC | 45 ms
36,912 KB |
testcase_05 | AC | 46 ms
37,104 KB |
testcase_06 | AC | 47 ms
37,356 KB |
testcase_07 | AC | 47 ms
37,372 KB |
testcase_08 | AC | 46 ms
37,104 KB |
testcase_09 | AC | 47 ms
37,396 KB |
testcase_10 | AC | 45 ms
37,004 KB |
testcase_11 | AC | 46 ms
37,120 KB |
testcase_12 | AC | 46 ms
36,976 KB |
testcase_13 | AC | 44 ms
37,436 KB |
testcase_14 | AC | 44 ms
36,888 KB |
testcase_15 | AC | 44 ms
37,076 KB |
testcase_16 | AC | 45 ms
37,236 KB |
testcase_17 | AC | 46 ms
37,564 KB |
testcase_18 | AC | 44 ms
36,956 KB |
testcase_19 | AC | 44 ms
37,388 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { static TreeSet<Long> ans = new TreeSet<>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int w = sc.nextInt() / 10; int z = sc.nextInt() / 10; int b = (int)(sc.nextDouble() * 10) + 10; System.out.println((w + z) * b); } } class Utilities { static String arrayToLineString(Object[] arr) { return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n")); } static String arrayToLineString(int[] arr) { return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new)); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public int[] nextIntArray() throws Exception { return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray(); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }