結果

問題 No.1372 Median of Submasks
ユーザー face4face4
提出日時 2021-07-24 11:11:07
言語 Kotlin
(2.1.0)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

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