結果

問題 No.411 昇順昇順ソート
ユーザー e869120
提出日時 2016-08-15 08:51:00
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 136 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 62,080 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-07 16:58:51
合計ジャッジ時間 1,614 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other WA * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(){
	int n,m;cin>>n>>m;
	if(n==2 && m==1){cout<<"0"<<endl;return 0;}
	cout<<n-1<<endl;
}
0