結果
| 問題 | No.8064 う し た ぷ に き あ く ん 笑 |
| コンテスト | |
| ユーザー |
rhincodon66
|
| 提出日時 | 2020-04-01 21:24:23 |
| 言語 | Kotlin (2.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 360 bytes |
| 記録 | |
| コンパイル時間 | 9,086 ms |
| コンパイル使用メモリ | 453,996 KB |
| 実行使用メモリ | 52,044 KB |
| 最終ジャッジ日時 | 2026-03-14 20:21:44 |
| 合計ジャッジ時間 | 20,244 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 47 |
ソースコード
import java.util.*
fun main(args:Array<String>){
solve()
}
fun solve(){
println(readLine())
}
fun read() = readLine()!!
fun reads() = readLine()!!.split(" ")
fun readint() = readLine()!!.toInt()
fun readints() = readLine()!!.split(" ").map{it.toInt()}
fun readlong() = readLine()!!.toLong()
fun readlongs() = readLine()!!.split(" ").map{it.toLong()}
rhincodon66