結果

問題 No.1713 trick or treat!
ユーザー マサマサ
提出日時 2021-12-28 15:00:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 77,124 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-10-02 07:32:24
合計ジャッジ時間 3,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,292 KB
testcase_01 AC 136 ms
40,992 KB
testcase_02 AC 132 ms
41,524 KB
testcase_03 AC 133 ms
40,928 KB
testcase_04 AC 119 ms
40,180 KB
testcase_05 AC 120 ms
39,868 KB
testcase_06 AC 130 ms
41,068 KB
testcase_07 AC 130 ms
41,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
      Scanner sc = new Scanner(System.in);
      long trick = sc.nextInt();
      long treat = sc.nextInt();

      long n = trick | treat;
      long factorial = 1;
      for(long i = 1; i < n; i++) {
        factorial = factorial * (i + 1);
      }

      System.out.println(factorial);
    }
}
0