結果

問題 No.57 ミリオンダイス
ユーザー Lo_OTLo_OT
提出日時 2018-03-30 00:07:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 2,407 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 54,212 KB
最終ジャッジ日時 2024-06-26 00:08:25
合計ジャッジ時間 4,778 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,192 KB
testcase_01 AC 129 ms
54,172 KB
testcase_02 AC 121 ms
54,036 KB
testcase_03 AC 126 ms
53,904 KB
testcase_04 AC 127 ms
53,952 KB
testcase_05 AC 128 ms
53,740 KB
testcase_06 AC 129 ms
54,032 KB
testcase_07 AC 130 ms
54,212 KB
testcase_08 AC 125 ms
54,016 KB
testcase_09 AC 125 ms
53,876 KB
testcase_10 AC 127 ms
54,020 KB
testcase_11 AC 124 ms
54,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Yukicoder solver = new Yukicoder();
        solver.solve(1, in, out);
        out.close();
    }

    static class Yukicoder {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            out.println(in.nextInt() * 3.5);
        }

    }
}

0