結果
問題 | No.9001 標準入出力の練習問題(テスト用) |
ユーザー | ciel |
提出日時 | 2015-11-10 18:01:29 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 450 ms / 1,000 ms |
コード長 | 411 bytes |
コンパイル時間 | 10,964 ms |
コンパイル使用メモリ | 429,028 KB |
実行使用メモリ | 62,112 KB |
最終ジャッジ日時 | 2024-11-19 18:23:46 |
合計ジャッジ時間 | 13,879 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
外部呼び出し有り |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 450 ms
62,112 KB |
testcase_01 | AC | 444 ms
61,920 KB |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
import java.util.Scanner; import java.io.*; fun main(args: Array<String>){ val SIZE=9999999 val z=ByteArray(SIZE) val p=Runtime.getRuntime().exec(arrayOf("ruby","-e","print gets.split.map(&:to_i).reduce(:+),\" \",gets;")); p.getOutputStream().write(z,0,System.`in`.read(z,0,SIZE)) p.getOutputStream().close() val sc=Scanner(p.getInputStream()) while(sc.hasNext())System.out.println(sc.nextLine()) }