結果

問題 No.8017 エスパー
ユーザー Lay_ec
提出日時 2016-07-21 19:11:55
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 71,520 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-06 05:37:24
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <set>
#include <cassert>
#include <cwchar>
using namespace std;

int main(int argc, char** argv){

	long long s,k;
	cin>>s>>k;

	cout<<s%(k+1000LL)<<endl;


	return 0;
}

0