結果

問題 No.1036 Make One With GCD 2
ユーザー kotatsugamekotatsugame
提出日時 2022-04-14 06:49:57
言語 Haskell
(9.8.2)
結果
AC  
実行時間 487 ms / 2,000 ms
コード長 531 bytes
コンパイル時間 1,956 ms
コンパイル使用メモリ 180,252 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-06-06 13:20:36
合計ジャッジ時間 12,670 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 395 ms
75,392 KB
testcase_01 AC 209 ms
50,816 KB
testcase_02 AC 230 ms
95,232 KB
testcase_03 AC 63 ms
26,368 KB
testcase_04 AC 114 ms
39,040 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 80 ms
31,104 KB
testcase_08 AC 65 ms
26,880 KB
testcase_09 AC 262 ms
56,320 KB
testcase_10 AC 243 ms
53,020 KB
testcase_11 AC 267 ms
56,448 KB
testcase_12 AC 249 ms
53,084 KB
testcase_13 AC 297 ms
59,520 KB
testcase_14 AC 301 ms
59,392 KB
testcase_15 AC 284 ms
56,832 KB
testcase_16 AC 295 ms
57,156 KB
testcase_17 AC 303 ms
58,112 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
7,168 KB
testcase_21 AC 4 ms
7,040 KB
testcase_22 AC 277 ms
55,680 KB
testcase_23 AC 200 ms
44,920 KB
testcase_24 AC 289 ms
58,168 KB
testcase_25 AC 278 ms
52,324 KB
testcase_26 AC 281 ms
53,676 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 225 ms
97,664 KB
testcase_39 AC 266 ms
60,032 KB
testcase_40 AC 212 ms
44,672 KB
testcase_41 AC 297 ms
61,056 KB
testcase_42 AC 277 ms
62,080 KB
testcase_43 AC 483 ms
95,872 KB
testcase_44 AC 487 ms
85,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Maybe
import Data.List
import qualified Data.ByteString.Char8 as BS
main=do
 n<-fst.fromJust.BS.readInteger<$>BS.getLine
 a<-map(fst.fromJust.BS.readInteger).BS.words<$>BS.getLine
 print$f (n+1) a [(0,0)] [(0,0)]

f n a [] r=f n a (drop 2$scanr (\(e,_) (_,s)->(e,s`gcd`e)) (0,0)$reverse$r) [(0,0)]

f n [] ((el,sl):l) ((er,sr):r)
 |sl`gcd`sr==1=n+f n [] l ((er,sr):r)
 |otherwise=0

f n (a:as) ((el,sl):l) ((er,sr):r)
 |sl`gcd`sr==1=n+f n (a:as) l ((er,sr):r)
 |otherwise=f (n-1) as ((el,sl):l) ((a,sr`gcd`a):(er,sr):r)
0