結果
問題 | No.296 n度寝 |
ユーザー | da_louis |
提出日時 | 2020-02-11 23:49:13 |
言語 | Kotlin (1.9.23) |
結果 |
WA
|
実行時間 | - |
コード長 | 345 bytes |
コンパイル時間 | 11,994 ms |
コンパイル使用メモリ | 438,440 KB |
実行使用メモリ | 57,096 KB |
最終ジャッジ日時 | 2024-10-01 12:22:38 |
合計ジャッジ時間 | 17,303 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 280 ms
56,852 KB |
testcase_04 | AC | 277 ms
56,832 KB |
testcase_05 | AC | 307 ms
56,968 KB |
testcase_06 | AC | 299 ms
56,996 KB |
testcase_07 | AC | 292 ms
56,772 KB |
testcase_08 | AC | 282 ms
56,740 KB |
testcase_09 | WA | - |
testcase_10 | AC | 298 ms
56,948 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 288 ms
57,008 KB |
testcase_14 | AC | 294 ms
56,836 KB |
testcase_15 | AC | 280 ms
56,752 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^ Main.kt:13:9: warning: 'appendln(Int): 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. appendln(newH) ^
ソースコード
fun main(args: Array<String>) { p296() } fun p296() { val (n, h, m, interval) = readLine()!!.split(' ').map { it.toInt() } val add = interval * (n - 1) val newH = (h + (add / 60)) % 24 val newM = (m + (add % 60)) % 60 val answer = buildString { appendln(newH) append(newM) } println(answer) }