結果

問題 No.2655 Increasing Strides
ユーザー chupaaaaaaan
提出日時 2025-08-28 22:56:04
言語 Haskell
(9.10.1)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 9,064 ms
コンパイル使用メモリ 179,328 KB
実行使用メモリ 7,716 KB
最終ジャッジ日時 2025-08-28 22:56:15
合計ジャッジ時間 3,023 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 29 WA * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

main :: IO ()
main = do
	n <- readLn :: IO Int
	
	putStrLn $ if n `mod` 8 == 0 then "Yes" else "No"
0