結果
| 問題 | No.316 もっと刺激的なFizzBuzzをください |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-03-03 10:09:45 |
| 言語 | Haskell (9.10.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 241 bytes |
| コンパイル時間 | 5,449 ms |
| コンパイル使用メモリ | 173,440 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-21 12:18:11 |
| 合計ジャッジ時間 | 4,059 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 33 |
コンパイルメッセージ
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
ソースコード
f = \x y->div x y
main=do
n<-getLine>>=return.(read::String->Integer)
[a,b,c]<-getLine>>=return.map(read::String->Integer).words
print$f n a + f n b + f n c - f n (lcm a b) - f n (lcm b c) - f n (lcm a c) + f n (lcm (lcm a b) c)