結果
問題 | No.73 helloworld |
ユーザー | Haar |
提出日時 | 2016-04-06 12:33:28 |
言語 | Haskell (9.8.2) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 10,653 ms |
コンパイル使用メモリ | 173,184 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-10 03:15:22 |
合計ジャッジ時間 | 11,396 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | RE | - |
testcase_13 | AC | 2 ms
5,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 ) Main.hs:4:1: warning: [GHC-94817] [-Wtabs] Tab character found here, and in 8 further locations. Suggested fix: Please use spaces instead. | 4 | alphabet <- getContents >>= return . map (read::String->Int) . lines | ^^^^^^^^ [2 of 2] Linking a.out
ソースコード
import Data.Char main = do alphabet <- getContents >>= return . map (read::String->Int) . lines let num_h = alphabet!!(ord 'h' - ord 'a') let num_e = alphabet!!(ord 'e' - ord 'a') let num_l = alphabet!!(ord 'l' - ord 'a') let num_o = alphabet!!(ord 'o' - ord 'a') let num_w = alphabet!!(ord 'w' - ord 'a') let num_r = alphabet!!(ord 'r' - ord 'a') let num_d = alphabet!!(ord 'd' - ord 'a') print $ num_h * num_e * num_w * num_r * num_d * (num_o - (num_o`div`2))*(num_o`div`2) * maximum[ x*(num_l-x)*(num_l-x-1)`div`2 | x<-[1..num_l] ]