結果
問題 |
No.1003 サイコロの実装 (1)
|
ユーザー |
![]() |
提出日時 | 2023-06-12 15:52:43 |
言語 | C (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 143 bytes |
コンパイル時間 | 107 ms |
コンパイル使用メモリ | 27,136 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-11 17:07:46 |
合計ジャッジ時間 | 863 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 WA * 12 |
ソースコード
#include <stdio.h> int main() { long long N; scanf("%lld", &N); if (N <= 6) { printf("Yes"); } else { printf("No"); } return 0; }