結果
| 問題 | No.976 2 の 128 乗と M |
| コンテスト | |
| ユーザー |
sasa
|
| 提出日時 | 2025-03-18 13:59:14 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 165 bytes |
| 記録 | |
| コンパイル時間 | 83 ms |
| コンパイル使用メモリ | 37,632 KB |
| 実行使用メモリ | 9,292 KB |
| 最終ジャッジ日時 | 2026-07-07 06:13:04 |
| 合計ジャッジ時間 | 2,698 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 3 |
| other | WA * 49 RE * 1 |
ソースコード
#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",num % val);
}
sasa