結果
問題 |
No.285 消費税2
|
ユーザー |
![]() |
提出日時 | 2019-08-24 08:53:24 |
言語 | Kotlin (2.1.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 154 bytes |
コンパイル時間 | 10,305 ms |
コンパイル使用メモリ | 430,712 KB |
実行使用メモリ | 54,564 KB |
最終ジャッジ日時 | 2024-11-20 19:20:20 |
合計ジャッジ時間 | 20,524 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 RE * 1 |
other | AC * 2 WA * 1 RE * 23 |
コンパイルメッセージ
Main.kt:4:10: warning: parameter 'args' is never used fun main(args: Array<String>){ ^
ソースコード
import java.util.* import kotlin.math.sqrt fun main(args: Array<String>){ val ans = (readLine()!!.toInt() * 108) / 100.toDouble() println(ans) }