結果
問題 | No.903 太郎の確率 |
ユーザー | Kakisuke |
提出日時 | 2020-03-24 20:04:24 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 109 bytes |
コンパイル時間 | 280 ms |
コンパイル使用メモリ | 28,800 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-31 15:22:44 |
合計ジャッジ時間 | 793 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#include<stdio.h> int main() { int N; scanf("%d",&N); printf("%f",(double)(1/N)); return 0; }