結果
問題 | No.36 素数が嫌い! |
ユーザー | 184 |
提出日時 | 2014-10-10 16:44:35 |
言語 | C++11 (gcc 13.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 459 bytes |
コンパイル時間 | 661 ms |
コンパイル使用メモリ | 65,768 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-12-30 08:26:02 |
合計ジャッジ時間 | 61,753 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 2 ms
10,496 KB |
testcase_03 | AC | 2 ms
8,448 KB |
testcase_04 | AC | 2 ms
10,496 KB |
testcase_05 | AC | 2 ms
8,576 KB |
testcase_06 | AC | 2 ms
10,496 KB |
testcase_07 | AC | 2 ms
8,448 KB |
testcase_08 | AC | 2 ms
8,448 KB |
testcase_09 | AC | 2 ms
8,320 KB |
testcase_10 | AC | 2 ms
8,448 KB |
testcase_11 | TLE | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | TLE | - |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | TLE | - |
testcase_23 | WA | - |
testcase_24 | TLE | - |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:22:20: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘long long int*’ [-Wformat=] 22 | scanf("%I64d",&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay); | ~~~~^ ~~ | | | | | long long int* | int* | %I64lld main.cpp:22:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 22 | scanf("%I64d",&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay); | ~~~~~^~~~~~~~~~~~
ソースコード
#include <cstdlib> #include <cstdio> #include <cstring> #include <algorithm> #include <iostream> #include <map> #include <vector> #include <queue> using namespace std; /* 184 //名前が 184 これだけで解けるとは・・・ */ int main(){ long long n; scanf("%I64d",&n);//%d%d%d%d",&n,&v,&x,&y,&ax,&ay); int cnt=0; for(int i=2;i*i<=n;i++)if(n%i==0)cnt++; printf(cnt<=2?"NO\n":"YES""\n"); return 0; }