結果
| 問題 |
No.8017 エスパー
|
| ユーザー |
Lay_ec
|
| 提出日時 | 2016-07-21 19:15:36 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 285 bytes |
| コンパイル時間 | 1,165 ms |
| コンパイル使用メモリ | 71,392 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-06 05:54:14 |
| 合計ジャッジ時間 | 1,714 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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