結果
問題 |
No.746 7の倍数
|
ユーザー |
![]() |
提出日時 | 2019-01-08 04:06:38 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 176 bytes |
コンパイル時間 | 515 ms |
コンパイル使用メモリ | 54,652 KB |
実行使用メモリ | 10,016 KB |
最終ジャッジ日時 | 2024-11-24 00:33:54 |
合計ジャッジ時間 | 1,706 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | WA * 2 RE * 1 |
other | WA * 20 |
ソースコード
#include <iostream> int main() { int n; std::cin >> n; int mod = n / 7; double ret = mod / n; std::cout << ret << std::endl; return 0; }