結果

問題 No.443 GCD of Permutation
ユーザー aRacaRac
提出日時 2016-11-23 20:03:32
言語 Scala(Beta)
(3.6.2)
結果
TLE  
実行時間 -
コード長 243 bytes
コンパイル時間 9,797 ms
コンパイル使用メモリ 257,028 KB
実行使用メモリ 77,076 KB
最終ジャッジ日時 2024-06-29 20:29:14
合計ジャッジ時間 26,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 897 ms
72,720 KB
testcase_01 AC 905 ms
65,616 KB
testcase_02 AC 922 ms
65,572 KB
testcase_03 AC 920 ms
65,828 KB
testcase_04 AC 962 ms
65,836 KB
testcase_05 AC 889 ms
65,264 KB
testcase_06 AC 899 ms
65,568 KB
testcase_07 AC 962 ms
66,096 KB
testcase_08 AC 897 ms
65,796 KB
testcase_09 AC 899 ms
65,820 KB
testcase_10 AC 900 ms
65,840 KB
testcase_11 AC 912 ms
65,836 KB
testcase_12 AC 913 ms
65,764 KB
testcase_13 AC 923 ms
65,780 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def solve(n: String) = n.permutations.map(d => BigInt(d)).reduce(gcd)

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