結果
問題 | No.373 かけ算と割った余り |
ユーザー | muu16 |
提出日時 | 2018-09-14 17:08:44 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 69 bytes |
コンパイル時間 | 43 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-05 19:01:59 |
合計ジャッジ時間 | 1,070 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
a,b,c,d = gets.chomp.split("") puts a.to_i * b.to_i * c.to_i % d.to_i