結果
| 問題 |
No.1003 サイコロの実装 (1)
|
| コンテスト | |
| ユーザー |
asdfghjkl;
|
| 提出日時 | 2020-03-12 01:55:54 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 160 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 27,904 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-16 04:50:06 |
| 合計ジャッジ時間 | 1,370 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 |
ソースコード
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
int main(void){
long long int n;scanf("%lld",&n);
if(n%6==0){printf("Yes\n");}
else{printf("No\n");}
}
asdfghjkl;