結果
問題 |
No.976 2 の 128 乗と M
|
ユーザー |
![]() |
提出日時 | 2025-03-18 14:00:15 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 163 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 27,264 KB |
実行使用メモリ | 7,328 KB |
最終ジャッジ日時 | 2025-03-18 14:00:17 |
合計ジャッジ時間 | 2,188 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 3 |
other | AC * 1 WA * 49 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:4:17: warning: format ‘%d’ expects argument of type ‘int*’, but argument 2 has type ‘long long int*’ [-Wformat=] 4 | scanf("%d",&val); | ~^ ~~~~ | | | | | long long int* | int* | %lld main.cpp:4:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 4 | scanf("%d",&val); | ~~~~~^~~~~~~~~~~
ソースコード
#include <stdio.h> int main(void){ long long val = 0; scanf("%d",&val); int num = 1; for(int i = 0;i < 128;i ++){ num *= 2; } printf("%lld",val % 2); }