結果
問題 | No.218 経験値1.5倍 |
ユーザー | aimy |
提出日時 | 2017-04-26 23:40:49 |
言語 | Haskell (9.10.1) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 213 bytes |
コンパイル時間 | 9,940 ms |
コンパイル使用メモリ | 176,256 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-12-29 16:02:58 |
合計ジャッジ時間 | 10,608 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 25 WA * 6 |
コンパイルメッセージ
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
ソースコード
import Data.Bool main = getContents >>= putStrLn . bool "NO" "YES" . exp15 . map read . words exp15 [a,b,c] = div (2 * req b) (3 * req c) == 1 where req n = fst $ until ((>=a).snd) (\(x,y)->(succ x, y+n)) (0,0)