結果

問題 No.8017 エスパー
ユーザー srup٩(๑`н´๑)۶
提出日時 2016-07-21 19:20:22
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 194 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 60,996 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-06 05:58:00
合計ジャッジ時間 1,191 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <cstdio>
using namespace std;

int main(void){
	int s, k; cin >> s >> k;
	printf("%d\n", s % k);
	return 0;
}
0