結果
問題 | No.1224 I hate Sqrt Inequality |
ユーザー | rutilicus |
提出日時 | 2020-09-12 11:27:37 |
言語 | Kotlin (1.9.23) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 788 bytes |
コンパイル時間 | 13,898 ms |
コンパイル使用メモリ | 441,720 KB |
実行使用メモリ | 57,016 KB |
最終ジャッジ日時 | 2024-06-10 19:09:35 |
合計ジャッジ時間 | 19,321 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 312 ms
56,896 KB |
testcase_01 | AC | 303 ms
56,944 KB |
testcase_02 | AC | 294 ms
56,888 KB |
testcase_03 | AC | 289 ms
56,916 KB |
testcase_04 | AC | 309 ms
56,796 KB |
testcase_05 | AC | 301 ms
57,008 KB |
testcase_06 | AC | 306 ms
56,792 KB |
testcase_07 | AC | 1,705 ms
56,852 KB |
testcase_08 | AC | 295 ms
57,016 KB |
testcase_09 | AC | 295 ms
56,852 KB |
testcase_10 | AC | 291 ms
56,944 KB |
testcase_11 | AC | 290 ms
56,968 KB |
testcase_12 | AC | 294 ms
56,888 KB |
testcase_13 | WA | - |
testcase_14 | AC | 293 ms
56,872 KB |
コンパイルメッセージ
Main.kt:32:13: warning: 'appendln(String?): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator. builder.appendln("No") ^
ソースコード
import kotlin.math.max import kotlin.math.sqrt fun main() { val builder = StringBuilder() val (a, b) = readInputLine().split(" ").map { it.toLong() } var aTmp = a var bTmp = b for (i in LongRange(2L, sqrt(max(a, b).toDouble()).toLong() + 1L)) { if (bTmp == 1L) { break } if (i % 2L == 0L || i % 5L == 0L) { while (bTmp % i == 0L) { bTmp /= i } continue } while (bTmp % i == 0L) { if (aTmp % i != 0L) { println("Yes") return } bTmp /= i aTmp /= i } } builder.appendln("No") print(builder.toString()) } fun readInputLine(): String { return readLine()!! }