結果
問題 | No.1366 交換門松列・梅 |
ユーザー | 箱星 |
提出日時 | 2021-02-05 21:53:33 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 359 ms / 1,000 ms |
コード長 | 1,081 bytes |
コンパイル時間 | 12,986 ms |
コンパイル使用メモリ | 439,680 KB |
実行使用メモリ | 60,292 KB |
最終ジャッジ日時 | 2024-12-16 13:19:15 |
合計ジャッジ時間 | 19,018 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 354 ms
60,220 KB |
testcase_01 | AC | 347 ms
60,292 KB |
testcase_02 | AC | 352 ms
60,100 KB |
testcase_03 | AC | 350 ms
60,252 KB |
testcase_04 | AC | 353 ms
60,160 KB |
testcase_05 | AC | 353 ms
60,272 KB |
testcase_06 | AC | 345 ms
60,132 KB |
testcase_07 | AC | 356 ms
60,272 KB |
testcase_08 | AC | 355 ms
60,252 KB |
testcase_09 | AC | 352 ms
60,272 KB |
testcase_10 | AC | 353 ms
60,272 KB |
testcase_11 | AC | 353 ms
60,164 KB |
testcase_12 | AC | 358 ms
60,244 KB |
testcase_13 | AC | 359 ms
60,092 KB |
コンパイルメッセージ
Main.kt:6:54: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int return a.distinct().size == 3 && (a[1] == a.max()!! || a[1] == a.min()!!) ^ Main.kt:6:75: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int return a.distinct().size == 3 && (a[1] == a.max()!! || a[1] == a.min()!!) ^
ソースコード
import java.io.PrintWriter import java.util.* import kotlin.math.* fun isKadomatsu(a: Array<Int>): Boolean { return a.distinct().size == 3 && (a[1] == a.max()!! || a[1] == a.min()!!) } fun PrintWriter.solve() { val a = Array(3) { nextInt() } val b = Array(3) { nextInt() } for (i in 0 until 3) { for (j in 0 until 3) { val c = a.copyOf() val d = b.copyOf() c[i] = b[j] d[j] = a[i] if (isKadomatsu(c) && isKadomatsu(d)) { println("Yes") return } } } println("No") } 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