結果

問題 No.443 GCD of Permutation
ユーザー aRacaRac
提出日時 2016-11-23 19:56:09
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 9,786 ms
コンパイル使用メモリ 264,512 KB
実行使用メモリ 66,588 KB
最終ジャッジ日時 2024-06-29 20:22:21
合計ジャッジ時間 42,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 TLE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 TLE -
testcase_19 RE -
testcase_20 TLE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 TLE -
testcase_26 RE -
testcase_27 RE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

object Main {
    def gcd(n: Int, m: Int): Int = if (n % m == 0) m else gcd(m, n % m)

    def solve(n: String) = n.permutations.map(_.toInt).reduce(gcd)

    def main(args: Array[String]): Unit = solve(io.StdIn.readLine)
}
0