結果
| 問題 | No.1556 Power Equality |
| コンテスト | |
| ユーザー |
kou_kkk
|
| 提出日時 | 2026-09-09 21:01:24 |
| 言語 | Haskell (9.14.1 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 2 ms / 2,000 ms |
| + 127µs | |
| コード長 | 538 bytes |
| 記録 | |
| コンパイル時間 | 1,152 ms |
| コンパイル使用メモリ | 201,600 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-09-09 21:01:37 |
| 合計ジャッジ時間 | 2,259 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 9 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/environments/default
[1 of 2] Compiling Main ( Main.hs, Main.o )
Main.hs:12:15: warning: [GHC-63394] [-Wx-partial]
In the use of ‘head’
(imported from Prelude, but defined in GHC.Internal.List):
"This is a partial function, it throws an error on empty lists. Use pattern matching, 'Data.List.uncons' or 'Data.Maybe.listToMaybe' instead. Consider refactoring to use "Data.List.NonEmpty"."
|
12 | . head
| ^^^^
[2 of 2] Linking a.out
ソースコード
module Main where
type Input = (Int, Int)
type Output = Bool
parse :: String -> Input
parse s =
let
[a, b] =
map read
. words
. head
$ lines s
in
(a, b)
solve :: Input -> Output
solve (a, b) =
let
cond1 = a == b
cond2 = max a b == 4 && min a b == 2
in
cond1 || cond2
render :: Output -> String
render True = "Yes"
render False = "No"
main :: IO ()
main =
interact
( render
. solve
. parse
)
kou_kkk