結果
問題 | No.666 1000000007で割るだけ |
ユーザー |
![]() |
提出日時 | 2018-03-28 17:06:48 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 168 bytes |
コンパイル時間 | 623 ms |
コンパイル使用メモリ | 20,736 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-25 13:12:44 |
合計ジャッジ時間 | 1,201 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:9:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%llu%llu",&a,&b); | ^~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){unsigned long long a,b;scanf("%llu%llu",&a,&b);printf("%llu\n",a*b%1000000007);return 0;}