結果
| 問題 | No.8017 エスパー |
| ユーザー |
Lay_ec
|
| 提出日時 | 2016-07-21 19:15:36 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 285 bytes |
| 記録 | |
| コンパイル時間 | 555 ms |
| コンパイル使用メモリ | 93,492 KB |
| 実行使用メモリ | 7,972 KB |
| 最終ジャッジ日時 | 2026-05-06 07:59:42 |
| 合計ジャッジ時間 | 2,622 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 20 |
ソースコード
#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)<<endl;
return 0;
}
Lay_ec