結果
| 問題 |
No.1415 100の倍数かつ正整数(1)
|
| コンテスト | |
| ユーザー |
sanao10000
|
| 提出日時 | 2021-10-22 16:26:53 |
| 言語 | Haskell (9.10.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 71 bytes |
| コンパイル時間 | 4,292 ms |
| コンパイル使用メモリ | 177,536 KB |
| 実行使用メモリ | 14,880 KB |
| 最終ジャッジ日時 | 2024-09-22 19:06:46 |
| 合計ジャッジ時間 | 8,029 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 TLE * 1 -- * 18 |
コンパイルメッセージ
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
ソースコード
main = do
n<-readLn
print$length[x|x<-[0..n],x`rem`100==0,x>0]
sanao10000