結果

問題 No.373 かけ算と割った余り
ユーザー kazu116kazu116
提出日時 2019-05-22 19:50:55
言語 Swift
(5.8.1)
結果
WA  
実行時間 -
コード長 146 bytes
コンパイル時間 1,243 ms
コンパイル使用メモリ 124,480 KB
実行使用メモリ 7,992 KB
最終ジャッジ日時 2023-08-20 12:26:10
合計ジャッジ時間 1,851 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,828 KB
testcase_01 AC 4 ms
7,968 KB
testcase_02 AC 4 ms
7,928 KB
testcase_03 AC 4 ms
7,992 KB
testcase_04 AC 5 ms
7,988 KB
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

let input:[Int64] = readLine()!.split(separator: " ").map{Int64($0)!}
let output:Int64 = (input[0] * input[1] * input[2]) % input[3]
print(output)
0