結果
問題 |
No.744 循環小数N桁目 Easy
|
ユーザー |
|
提出日時 | 2018-10-22 00:15:45 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 1,219 ms |
コンパイル使用メモリ | 157,160 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-19 03:34:53 |
合計ジャッジ時間 | 2,672 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 RE * 1 |
other | WA * 2 RE * 5 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int n; int tmp[7] = {4,2,8,5,7,1}; cin >> n; cout << tmp[n/6]; return 0; }