結果

問題 No.1177 余りは?
ユーザー こまるこまる
提出日時 2020-11-14 12:20:31
言語 Haskell
(9.8.2)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 148 bytes
コンパイル時間 6,331 ms
コンパイル使用メモリ 174,592 KB
実行使用メモリ 7,108 KB
最終ジャッジ日時 2024-07-22 22:48:51
合計ジャッジ時間 4,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,248 KB
testcase_01 AC 27 ms
7,108 KB
testcase_02 AC 8 ms
5,376 KB
testcase_03 AC 18 ms
6,116 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 12 ms
5,496 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 21 ms
6,420 KB
testcase_09 AC 20 ms
6,196 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 15 ms
5,452 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 6 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 23 ms
6,348 KB
testcase_18 AC 12 ms
5,392 KB
testcase_19 AC 15 ms
5,880 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 12 ms
5,816 KB
testcase_22 AC 19 ms
6,380 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 17 ms
6,264 KB
testcase_26 AC 21 ms
6,432 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 14 ms
5,572 KB
testcase_29 AC 13 ms
5,536 KB
testcase_30 AC 12 ms
5,608 KB
testcase_31 AC 15 ms
6,100 KB
testcase_32 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 )
[2 of 2] Linking a.out

ソースコード

diff #

main :: IO ()
main = do
  [p, k] <- map (read :: String -> Integer) . words <$> getLine
  print $ ((10 ^ (p - 1) - k) `div` p + 1) `mod` 1000000007
0