結果
問題 | No.1047 Zero (Novice) |
ユーザー | uytvcc |
提出日時 | 2020-05-08 21:52:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 1,095 ms / 2,000 ms |
コード長 | 350 bytes |
コンパイル時間 | 1,674 ms |
コンパイル使用メモリ | 166,560 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 00:31:33 |
合計ジャッジ時間 | 4,753 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 17 |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main() { ll a,b,c=1,cnt=1; cin>>a>>b; if(b==0){ cout<<1<<endl; return 0; } for(int i=a; a<10; a++){ c *= i; cnt++; if(c==-1){ cout<<cnt<<endl; return 0; } } cout<<-1<<endl; }