結果

問題 No.3115 One Power One Kill
ユーザー rhoo
提出日時 2025-04-18 21:53:26
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 13,458 ms
コンパイル使用メモリ 384,464 KB
実行使用メモリ 25,996 KB
平均クエリ数 2.00
最終ジャッジ日時 2025-04-18 21:53:45
合計ジャッジ時間 16,883 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#![allow(unused_imports,non_snake_case,dead_code)]
use std::{cmp::Reverse as Rev,collections::*,iter::*};
use proconio::{marker::*,input_interactive as input};


// #[fastout]
fn main(){
    println!("19000 101");
    input!{
        k:usize,
    }

    if k%101==0{
        println!("0");
    } else{
        println!("1");
    }
}
0