結果

問題 No.1372 Median of Submasks
ユーザー face4face4
提出日時 2021-07-24 11:11:07
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 11,542 ms
コンパイル使用メモリ 429,960 KB
実行使用メモリ 56,856 KB
最終ジャッジ日時 2024-07-19 15:17:29
合計ジャッジ時間 20,371 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
56,856 KB
testcase_01 AC 292 ms
56,664 KB
testcase_02 AC 287 ms
56,588 KB
testcase_03 AC 287 ms
56,736 KB
testcase_04 AC 276 ms
56,592 KB
testcase_05 AC 278 ms
56,600 KB
testcase_06 AC 285 ms
56,764 KB
testcase_07 AC 278 ms
56,856 KB
testcase_08 AC 277 ms
56,772 KB
testcase_09 AC 284 ms
56,596 KB
testcase_10 AC 296 ms
56,616 KB
testcase_11 AC 286 ms
56,588 KB
testcase_12 AC 278 ms
56,744 KB
testcase_13 AC 288 ms
56,752 KB
testcase_14 AC 271 ms
56,596 KB
testcase_15 AC 272 ms
56,604 KB
testcase_16 AC 281 ms
56,592 KB
testcase_17 AC 275 ms
56,636 KB
testcase_18 AC 275 ms
56,832 KB
testcase_19 AC 276 ms
56,704 KB
testcase_20 AC 289 ms
56,596 KB
testcase_21 AC 267 ms
56,460 KB
testcase_22 AC 267 ms
56,600 KB
testcase_23 AC 286 ms
56,700 KB
testcase_24 AC 278 ms
56,748 KB
testcase_25 AC 279 ms
56,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    var n = readLine()!!.toLong().toString(2).toCharArray()
    var found = false
    for (i in n.indices) {
        if (n[i] == '0') continue
        if (!found) {
            found = true
        } else {
            n[i] = '0'
        }
    }
    println(n.concatToString().toLong(2))
}
0