結果

問題 No.1305 Speak of the Devil
ユーザー 👑 CleyL
提出日時 2022-10-10 20:30:23
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 107 bytes
コンパイル時間 734 ms
コンパイル使用メモリ 66,528 KB
最終ジャッジ日時 2025-02-08 01:18:02
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 23
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(){
    int a,b;cin>>a>>b;
    cout << min(a,b) << endl;
}
0