結果

問題 No.1177 余りは?
ユーザー kotatsugamekotatsugame
提出日時 2020-08-21 23:08:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 294 bytes
コンパイル時間 656 ms
コンパイル使用メモリ 71,936 KB
実行使用メモリ 50,304 KB
最終ジャッジ日時 2024-10-15 06:33:24
合計ジャッジ時間 14,969 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
21,888 KB
testcase_01 TLE -
testcase_02 AC 203 ms
17,280 KB
testcase_03 AC 681 ms
36,736 KB
testcase_04 AC 308 ms
21,632 KB
testcase_05 AC 395 ms
25,600 KB
testcase_06 AC 64 ms
9,472 KB
testcase_07 AC 57 ms
9,088 KB
testcase_08 AC 884 ms
43,520 KB
testcase_09 AC 765 ms
39,424 KB
testcase_10 AC 10 ms
5,248 KB
testcase_11 AC 461 ms
27,648 KB
testcase_12 AC 46 ms
8,064 KB
testcase_13 AC 101 ms
11,904 KB
testcase_14 AC 156 ms
14,464 KB
testcase_15 AC 271 ms
19,968 KB
testcase_16 AC 189 ms
15,872 KB
testcase_17 AC 920 ms
44,928 KB
testcase_18 AC 360 ms
23,552 KB
testcase_19 AC 563 ms
32,000 KB
testcase_20 AC 102 ms
12,160 KB
testcase_21 AC 465 ms
28,544 KB
testcase_22 AC 806 ms
41,856 KB
testcase_23 AC 369 ms
24,192 KB
testcase_24 AC 190 ms
16,512 KB
testcase_25 AC 687 ms
37,120 KB
testcase_26 AC 851 ms
42,752 KB
testcase_27 AC 98 ms
11,904 KB
testcase_28 AC 450 ms
27,648 KB
testcase_29 AC 396 ms
25,728 KB
testcase_30 AC 389 ms
25,216 KB
testcase_31 AC 562 ms
31,872 KB
testcase_32 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<set>
using namespace std;
long P,K;
const long mod=1e9+7;
main()
{
	cin>>P>>K;
	long ans=0;
	long now=1;
	set<long>S;
	while(S.find(now)==S.end())
	{
		S.insert(now);
		now=now*10;
		ans=(ans*10+now/P)%mod;
		now%=P;
	}
	if(K==0)ans=(ans+1)%mod;
	cout<<ans<<endl;
}
0