結果

問題 No.1177 余りは?
ユーザー yudedakoyudedako
提出日時 2020-08-22 09:25:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 335 ms / 1,000 ms
コード長 261 bytes
コンパイル時間 13,101 ms
コンパイル使用メモリ 432,000 KB
実行使用メモリ 57,156 KB
最終ジャッジ日時 2024-10-15 06:48:38
合計ジャッジ時間 25,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
56,848 KB
testcase_01 AC 331 ms
56,984 KB
testcase_02 AC 320 ms
56,940 KB
testcase_03 AC 326 ms
56,692 KB
testcase_04 AC 324 ms
56,776 KB
testcase_05 AC 325 ms
56,884 KB
testcase_06 AC 321 ms
57,032 KB
testcase_07 AC 325 ms
57,036 KB
testcase_08 AC 329 ms
56,700 KB
testcase_09 AC 335 ms
56,856 KB
testcase_10 AC 314 ms
56,716 KB
testcase_11 AC 329 ms
56,928 KB
testcase_12 AC 324 ms
56,864 KB
testcase_13 AC 325 ms
56,664 KB
testcase_14 AC 323 ms
57,068 KB
testcase_15 AC 326 ms
56,896 KB
testcase_16 AC 322 ms
56,812 KB
testcase_17 AC 329 ms
56,940 KB
testcase_18 AC 331 ms
57,052 KB
testcase_19 AC 330 ms
56,952 KB
testcase_20 AC 324 ms
56,956 KB
testcase_21 AC 325 ms
56,804 KB
testcase_22 AC 332 ms
56,960 KB
testcase_23 AC 331 ms
56,888 KB
testcase_24 AC 325 ms
56,948 KB
testcase_25 AC 328 ms
56,848 KB
testcase_26 AC 333 ms
56,768 KB
testcase_27 AC 326 ms
56,948 KB
testcase_28 AC 329 ms
57,156 KB
testcase_29 AC 326 ms
56,876 KB
testcase_30 AC 322 ms
56,704 KB
testcase_31 AC 330 ms
56,984 KB
testcase_32 AC 316 ms
56,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


const val MOD = 1000000007L

fun main() {
    val (p, k) = readLine()!!.trim().split(' ').map(String::toInt)
    var q = 0L
    var r = 1
    repeat(p) {
        q = (q * 10 + r / p) % MOD
        r = (r % p) * 10
    }
    println(if (k == 0) q + 1 else q)
}
0