結果
| 問題 | No.835 ジュース |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-06-29 11:44:36 |
| 言語 | Java (openjdk 25.0.2) |
| 結果 |
AC
|
| 実行時間 | 55 ms / 2,000 ms |
| コード長 | 534 bytes |
| 記録 | |
| コンパイル時間 | 4,378 ms |
| コンパイル使用メモリ | 82,392 KB |
| 実行使用メモリ | 41,632 KB |
| 最終ジャッジ日時 | 2026-03-23 09:26:47 |
| 合計ジャッジ時間 | 3,459 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
import java.io.*;
import java.util.Scanner;
public class Main_yukicoder835 {
private static Scanner sc;
private static Printer pr;
private static void solve() {
long n = sc.nextLong();
pr.println(n * 3 / 2);
}
// ---------------------------------------------------
public static void main(String[] args) {
sc = new Scanner(System.in);
pr = new Printer(System.out);
solve();
pr.close();
sc.close();
}
static class Printer extends PrintWriter {
Printer(OutputStream out) {
super(out);
}
}
}