結果

問題 No.350 d=vt
ユーザー kazu116
提出日時 2019-05-22 19:07:58
言語 Swift
(6.0.3)
結果
WA  
実行時間 -
コード長 127 bytes
コンパイル時間 616 ms
コンパイル使用メモリ 121,068 KB
実行使用メモリ 9,472 KB
最終ジャッジ日時 2024-11-30 14:08:31
合計ジャッジ時間 1,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

let input:[Double] = readLine()!.split(separator: " ").map{Double($0)!}
let output:Int = Int(input[0] * input[1])
print(output)
0