結果

問題 No.2046 Ans Mod? Mod Ans!
ユーザー 箱星箱星
提出日時 2021-07-18 20:30:17
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 794 bytes
コンパイル時間 12,767 ms
コンパイル使用メモリ 428,832 KB
実行使用メモリ 106,308 KB
最終ジャッジ日時 2024-12-16 08:04:31
合計ジャッジ時間 73,436 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
53,040 KB
testcase_01 AC 294 ms
85,712 KB
testcase_02 AC 293 ms
54,936 KB
testcase_03 AC 315 ms
53,364 KB
testcase_04 AC 316 ms
85,900 KB
testcase_05 AC 320 ms
55,148 KB
testcase_06 AC 319 ms
53,332 KB
testcase_07 AC 320 ms
86,072 KB
testcase_08 AC 389 ms
55,592 KB
testcase_09 AC 402 ms
106,308 KB
testcase_10 AC 428 ms
53,840 KB
testcase_11 AC 552 ms
51,092 KB
testcase_12 AC 497 ms
50,728 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val a = Array(n) { nextInt() }
    var ans = 0L
    for (i in 0 until n) {
        for (j in i + 1 until n) {
            ans += (a[i] % a[j] - a[j] % a[i]).absoluteValue
        }
    }
    println(ans)
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0