結果
問題 | No.744 循環小数N桁目 Easy |
ユーザー | asdfghjkl; |
提出日時 | 2020-03-09 00:40:09 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 279 bytes |
コンパイル時間 | 267 ms |
コンパイル使用メモリ | 28,160 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 20:21:03 |
合計ジャッジ時間 | 933 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
ソースコード
#include<stdio.h> #include<string.h> #include<stdlib.h> int main(void){ int n; scanf("%d",&n); n=n%6; if(n==0){printf("2\n");} else if(n==1){printf("8\n");} else if(n==2){printf("5\n");} else if(n==3){printf("7\n");} else if(n==4){printf("1\n");} else if(n==5){printf("4\n");} }