結果

問題 No.442 和と積
ユーザー ducktailducktail
提出日時 2018-05-01 14:47:14
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 154 bytes
コンパイル時間 5,070 ms
コンパイル使用メモリ 159,616 KB
実行使用メモリ 7,324 KB
最終ジャッジ日時 2023-09-10 08:43:32
合計ジャッジ時間 6,633 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
7,172 KB
testcase_02 AC 2 ms
7,224 KB
testcase_03 AC 3 ms
7,188 KB
testcase_04 WA -
testcase_05 AC 3 ms
7,096 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3 ms
7,300 KB
testcase_10 WA -
testcase_11 AC 3 ms
7,204 KB
testcase_12 AC 2 ms
7,108 KB
testcase_13 AC 3 ms
7,152 KB
testcase_14 AC 2 ms
7,116 KB
testcase_15 AC 3 ms
7,296 KB
testcase_16 AC 2 ms
7,112 KB
testcase_17 AC 3 ms
7,308 KB
testcase_18 WA -
testcase_19 AC 2 ms
7,324 KB
testcase_20 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 #

import Control.Applicative ((<$>))

main :: IO ()
main = solve <$> map read <$> words <$> getLine >>= print

solve :: [Int] -> Int
solve [a, b] = gcd a b
0