結果

問題 No.736 約比
ユーザー 👑 horiesinitihoriesiniti
提出日時 2018-12-09 15:18:07
言語 Haskell
(9.8.2)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 164,012 KB
実行使用メモリ 8,600 KB
最終ジャッジ日時 2023-10-14 14:23:00
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,612 KB
testcase_01 AC 3 ms
7,556 KB
testcase_02 AC 2 ms
7,416 KB
testcase_03 AC 3 ms
7,992 KB
testcase_04 AC 3 ms
8,044 KB
testcase_05 AC 2 ms
7,452 KB
testcase_06 AC 2 ms
7,300 KB
testcase_07 AC 4 ms
8,484 KB
testcase_08 AC 3 ms
8,200 KB
testcase_09 AC 3 ms
7,940 KB
testcase_10 AC 3 ms
8,076 KB
testcase_11 AC 3 ms
8,328 KB
testcase_12 AC 3 ms
8,372 KB
testcase_13 AC 3 ms
8,304 KB
testcase_14 AC 3 ms
7,544 KB
testcase_15 AC 3 ms
8,028 KB
testcase_16 AC 3 ms
7,652 KB
testcase_17 AC 3 ms
8,468 KB
testcase_18 AC 3 ms
8,244 KB
testcase_19 AC 2 ms
7,868 KB
testcase_20 AC 3 ms
8,244 KB
testcase_21 AC 3 ms
7,896 KB
testcase_22 AC 2 ms
7,228 KB
testcase_23 AC 3 ms
7,464 KB
testcase_24 AC 3 ms
8,260 KB
testcase_25 AC 2 ms
7,264 KB
testcase_26 AC 3 ms
7,176 KB
testcase_27 AC 3 ms
8,272 KB
testcase_28 AC 3 ms
8,384 KB
testcase_29 AC 3 ms
7,216 KB
testcase_30 AC 3 ms
8,180 KB
testcase_31 AC 2 ms
7,200 KB
testcase_32 AC 2 ms
7,376 KB
testcase_33 AC 3 ms
8,204 KB
testcase_34 AC 3 ms
7,340 KB
testcase_35 AC 2 ms
7,312 KB
testcase_36 AC 3 ms
8,348 KB
testcase_37 AC 3 ms
8,176 KB
testcase_38 AC 3 ms
8,100 KB
testcase_39 AC 2 ms
7,280 KB
testcase_40 AC 3 ms
8,224 KB
testcase_41 AC 3 ms
8,168 KB
testcase_42 AC 3 ms
8,084 KB
testcase_43 AC 3 ms
8,208 KB
testcase_44 AC 3 ms
8,032 KB
testcase_45 AC 3 ms
8,140 KB
testcase_46 AC 2 ms
7,440 KB
testcase_47 AC 3 ms
8,600 KB
testcase_48 AC 3 ms
7,952 KB
testcase_49 AC 2 ms
7,404 KB
testcase_50 AC 3 ms
7,596 KB
testcase_51 AC 2 ms
7,660 KB
testcase_52 AC 3 ms
8,472 KB
testcase_53 AC 3 ms
8,176 KB
testcase_54 AC 3 ms
7,748 KB
testcase_55 AC 3 ms
7,576 KB
testcase_56 AC 3 ms
7,912 KB
testcase_57 AC 3 ms
7,300 KB
testcase_58 AC 4 ms
8,276 KB
testcase_59 AC 3 ms
8,448 KB
testcase_60 AC 2 ms
7,504 KB
testcase_61 AC 4 ms
8,332 KB
testcase_62 AC 2 ms
7,244 KB
testcase_63 AC 2 ms
7,264 KB
testcase_64 AC 2 ms
7,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

f::Integer->[Integer]->Integer
f d []=d
f d (x:xs)=f (gcd d x) xs

f2 ::Integer->Integer->Integer
f2 d x=x `div` d

f3::[Integer]->String
f3 (x:[])=show x
f3 (x:xs)=(show x)++":"++f3 xs

main = do
       e<-getLine
       es<-getLine
       let xs=map read (words es)::[Integer]
       putStrLn $ f3 $ map (f2 ( f (head xs) (tail xs))) xs
0