結果

問題 No.1342 Calculation
ユーザー tentententen
提出日時 2021-01-18 10:03:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 3,072 ms
コンパイル使用メモリ 70,580 KB
実行使用メモリ 55,764 KB
最終ジャッジ日時 2023-08-20 17:41:02
合計ジャッジ時間 2,937 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
55,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int ans = (43 * 19 + 47 * 28) / 27;
		System.out.println(ans);
	}
}
0