結果
| 問題 |
No.2655 Increasing Strides
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-08-28 22:54:52 |
| 言語 | Haskell (9.10.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 96 bytes |
| コンパイル時間 | 11,862 ms |
| コンパイル使用メモリ | 177,408 KB |
| 実行使用メモリ | 7,720 KB |
| 最終ジャッジ日時 | 2025-08-28 22:55:06 |
| 合計ジャッジ時間 | 10,463 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 34 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.10.1/environments/default
[1 of 2] Compiling Main ( Main.hs, Main.o )
Main.hs:3:1: warning: [GHC-94817] [-Wtabs]
Tab character found here, and in two further locations.
Suggested fix: Please use spaces instead.
|
3 | n <- readLn :: IO Int
| ^^^^^^^^
[2 of 2] Linking a.out
ソースコード
main :: IO () main = do n <- readLn :: IO Int print $ if n `mod` 8 == 0 then "Yes" else "No"