結果

問題 No.1779 Magical Swap
ユーザー 箱星箱星
提出日時 2021-10-21 21:18:37
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,437 bytes
コンパイル時間 9,665 ms
コンパイル使用メモリ 435,928 KB
実行使用メモリ 82,076 KB
最終ジャッジ日時 2024-07-08 03:14:16
合計ジャッジ時間 18,171 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
49,796 KB
testcase_01 WA -
testcase_02 AC 340 ms
54,932 KB
testcase_03 AC 322 ms
52,140 KB
testcase_04 AC 412 ms
70,048 KB
testcase_05 AC 367 ms
58,884 KB
testcase_06 AC 462 ms
60,356 KB
testcase_07 AC 502 ms
67,576 KB
testcase_08 AC 265 ms
50,436 KB
testcase_09 AC 362 ms
56,064 KB
testcase_10 AC 448 ms
71,372 KB
testcase_11 AC 385 ms
61,312 KB
testcase_12 AC 340 ms
54,252 KB
testcase_13 AC 410 ms
65,984 KB
testcase_14 AC 441 ms
70,544 KB
testcase_15 AC 464 ms
82,076 KB
testcase_16 AC 421 ms
74,844 KB
testcase_17 AC 454 ms
69,664 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun isprime(n: Int): Boolean {
    if (n == 1) return false
    var d = 2
    while (d * d <= n) {
        if (n % d == 0) return false
        d++
    }
    return true
}

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val n = nextInt()
        val a = Array(n) { nextInt() }
        val b = Array(n) { nextInt() }
        for (i in 0 until n) {
            if (i == 0 || (isprime(i + 1) && 2 * (i + 1) > n)) {
                if (a[i] != b[i]) {
                    println("No")
                    continue@case
                }
            }
        }
        println("Yes")
    }
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", 1.shl(26))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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