結果
問題 | No.9011 数字を全て足そう(数字だけ) |
ユーザー | matsumo |
提出日時 | 2020-11-14 22:32:49 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 302 ms / 2,000 ms |
コード長 | 787 bytes |
コンパイル時間 | 14,706 ms |
コンパイル使用メモリ | 435,976 KB |
実行使用メモリ | 56,884 KB |
最終ジャッジ日時 | 2024-07-23 00:52:17 |
合計ジャッジ時間 | 22,965 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 292 ms
56,804 KB |
testcase_01 | AC | 294 ms
56,716 KB |
testcase_02 | AC | 292 ms
56,704 KB |
testcase_03 | AC | 293 ms
56,728 KB |
testcase_04 | AC | 293 ms
56,800 KB |
testcase_05 | AC | 301 ms
56,772 KB |
testcase_06 | AC | 301 ms
56,844 KB |
testcase_07 | AC | 297 ms
56,700 KB |
testcase_08 | AC | 301 ms
56,796 KB |
testcase_09 | AC | 302 ms
56,700 KB |
testcase_10 | AC | 297 ms
56,720 KB |
testcase_11 | AC | 298 ms
56,716 KB |
testcase_12 | AC | 292 ms
56,800 KB |
testcase_13 | AC | 293 ms
56,884 KB |
testcase_14 | AC | 295 ms
56,708 KB |
testcase_15 | AC | 291 ms
56,804 KB |
testcase_16 | AC | 296 ms
56,768 KB |
testcase_17 | AC | 288 ms
56,792 KB |
testcase_18 | AC | 289 ms
56,728 KB |
testcase_19 | AC | 287 ms
56,756 KB |
testcase_20 | AC | 288 ms
56,712 KB |
testcase_21 | AC | 288 ms
56,728 KB |
testcase_22 | AC | 285 ms
56,828 KB |
ソースコード
import java.io.BufferedReader import java.io.InputStreamReader import java.io.PrintWriter val br = BufferedReader(InputStreamReader(System.`in`)) val out = PrintWriter(System.out) fun main() { br.use { out.use { // repeat(readInteger()) { solve() } solve() out.flush() } } } fun solve() { val s = br.readLine()!!.map { it - '0' }.sum() out.println(s) } fun readInteger() = Integer.parseInt(br.readLine()) fun readLong() = java.lang.Long.parseLong(br.readLine()) fun readStringList() = br.readLine()!!.split(' ') fun readIntegerList() = readStringList().map(Integer::parseInt) fun readLongList() = readStringList().map(java.lang.Long::parseLong) fun readDoubleList() = readStringList().map(java.lang.Double::parseDouble)