結果
| 問題 | No.537 ユーザーID |
| コンテスト | |
| ユーザー |
funakoshi
|
| 提出日時 | 2019-08-30 13:06:21 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 380 bytes |
| 記録 | |
| コンパイル時間 | 163 ms |
| コンパイル使用メモリ | 30,208 KB |
| 実行使用メモリ | 15,312 KB |
| 最終ジャッジ日時 | 2024-11-21 05:09:03 |
| 合計ジャッジ時間 | 109,617 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | TLE * 3 |
| other | TLE * 32 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdbool.h>
#include <math.h>
int main(void)
{
long long int num,cnt=0;
scanf("%lld",&num);
for(int i=1;i<=pow(10,12);i++)
{
for(int j=1;j<=pow(10,12);j++)
{
if(i*j==num)
{
cnt++;
}
}
}
printf("%lld",num);
}
funakoshi