結果

問題 No.1342 Calculation
ユーザー tentententen
提出日時 2021-01-18 10:03:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 2,347 ms
コンパイル使用メモリ 75,820 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-05-08 00:06:25
合計ジャッジ時間 3,123 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,668 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