結果
問題 | No.666 1000000007で割るだけ |
ユーザー |
![]() |
提出日時 | 2025-03-10 14:50:05 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 125 bytes |
コンパイル時間 | 532 ms |
コンパイル使用メモリ | 24,448 KB |
実行使用メモリ | 7,324 KB |
最終ジャッジ日時 | 2025-03-10 14:50:07 |
合計ジャッジ時間 | 1,600 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 |
コンパイルメッセージ
main.c: In function ‘main’: main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%lld %lld",&a,&b); | ^~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>void main(void){long long int a = 0,b = 0;scanf("%lld %lld",&a,&b);printf("%lld",a*b%1000000007);}