結果

問題 No.442 和と積
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-21 22:01:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-10-09 20:36:11
合計ジャッジ時間 5,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
41,056 KB
testcase_02 AC 127 ms
41,268 KB
testcase_03 AC 128 ms
41,340 KB
testcase_04 WA -
testcase_05 AC 126 ms
41,240 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 130 ms
41,272 KB
testcase_10 WA -
testcase_11 AC 120 ms
41,144 KB
testcase_12 AC 131 ms
41,188 KB
testcase_13 AC 129 ms
41,616 KB
testcase_14 AC 130 ms
41,116 KB
testcase_15 AC 129 ms
41,236 KB
testcase_16 AC 128 ms
41,396 KB
testcase_17 AC 114 ms
41,120 KB
testcase_18 WA -
testcase_19 AC 129 ms
41,160 KB
testcase_20 AC 135 ms
41,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long a = sc.nextLong();
    long b = sc.nextLong();
    System.out.println(gcd(a, b));
  }

  public static long gcd(long a, long b) {
    if(b == 0) return a;
    return gcd(b, (a % b));
  }
}
0