結果
問題 | No.1594 Three Classes |
ユーザー | Kenneth Yong |
提出日時 | 2021-07-09 22:52:15 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 315 ms / 2,000 ms |
コード長 | 787 bytes |
コンパイル時間 | 12,590 ms |
コンパイル使用メモリ | 437,196 KB |
実行使用メモリ | 51,680 KB |
最終ジャッジ日時 | 2024-11-16 08:21:36 |
合計ジャッジ時間 | 20,166 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 310 ms
51,620 KB |
testcase_01 | AC | 308 ms
51,388 KB |
testcase_02 | AC | 306 ms
51,512 KB |
testcase_03 | AC | 307 ms
51,348 KB |
testcase_04 | AC | 308 ms
51,588 KB |
testcase_05 | AC | 311 ms
51,448 KB |
testcase_06 | AC | 307 ms
51,404 KB |
testcase_07 | AC | 309 ms
51,460 KB |
testcase_08 | AC | 314 ms
51,592 KB |
testcase_09 | AC | 312 ms
51,600 KB |
testcase_10 | AC | 312 ms
51,560 KB |
testcase_11 | AC | 310 ms
51,248 KB |
testcase_12 | AC | 313 ms
51,380 KB |
testcase_13 | AC | 309 ms
51,524 KB |
testcase_14 | AC | 315 ms
51,356 KB |
testcase_15 | AC | 312 ms
51,584 KB |
testcase_16 | AC | 310 ms
51,476 KB |
testcase_17 | AC | 306 ms
51,528 KB |
testcase_18 | AC | 304 ms
51,232 KB |
testcase_19 | AC | 301 ms
51,680 KB |
testcase_20 | AC | 305 ms
51,660 KB |
ソースコード
fun main() { val n = readLine()!!.toInt(); val list = readLine()!!.split(" ").map {it -> it.toLong()}; var sum = list.reduce {p, q -> p + q}; if (sum % 3L != 0L) { println("No"); return; } sum /= 3; for (i in 1 until 1.shl(n)) { var current = 0L; for (j in 0 until n) { if ((i and 1.shl(j)) > 0) { current += list[j]; } } if (current == 2 * sum) { var mask = i; while (mask > 0) { current = 0L; for (j in 0 until n) { if ((mask and 1.shl(j)) > 0) { current += list[j]; } } if (current == sum) { println("Yes"); return; } mask = (mask - 1) and i; } } } println("No"); } /* C:\Users\kenne\OneDrive\Desktop\competitive_programming\kotlinmain.kt */