結果
問題 | No.1366 交換門松列・梅 |
ユーザー | yumechi |
提出日時 | 2021-02-24 01:12:34 |
言語 | Scala(Beta) (3.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 719 bytes |
コンパイル時間 | 14,010 ms |
コンパイル使用メモリ | 265,580 KB |
実行使用メモリ | 66,548 KB |
最終ジャッジ日時 | 2024-12-16 13:19:50 |
合計ジャッジ時間 | 30,030 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
ソースコード
import java.util.Scanner import scala.annotation.tailrec object Main extends App { val sc = new Scanner(System.in) val a = Array.fill(3)(sc.nextInt) val b = Array.fill(3)(sc.nextInt) def solve(a: Array[Int], b: Array[Int]): Boolean = { def isKadomatsu(c: Array[Int]): Boolean = { c.size == c.toSet.size && (c.min == c(1) || c.max == c(1)) } for(i <- 0 to 2) { for(j <- 0 to 2) { var ca = a.clone() var cb = b.clone() val ta = a(i) val tb = b(j) ca.update(i, tb) cb.update(j, ta) if(isKadomatsu(ca) && isKadomatsu(cb)) { return true } } } false } println(if (solve(a, b)) "Yes" else "No") }