結果

問題 No.1342 Calculation
ユーザー yukyuyukyu
提出日時 2021-02-24 23:57:20
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 12,931 ms
コンパイル使用メモリ 387,300 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-09-25 00:51:28
合計ジャッジ時間 13,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let base = 43 * 47 * 27;
    let num1 = 19 * 43 * 2021;
    let num2 = 28 * 47 * 2021;
    let actual = (num1 + num2) / base;
    println!("{}", actual);
}
0