結果
問題 | No.304 鍵(1) |
ユーザー | kaedamakun |
提出日時 | 2016-01-07 08:35:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 345 bytes |
コンパイル時間 | 124 ms |
コンパイル使用メモリ | 23,296 KB |
実行使用メモリ | 39,756 KB |
最終ジャッジ日時 | 2024-07-16 22:50:28 |
合計ジャッジ時間 | 6,542 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:26:25: warning: format ‘%s’ expects argument of type ‘char*’, but argument 2 has type ‘char (*)[10]’ [-Wformat=] 26 | scanf("%s",&a); | ~^ ~~ | | | | | char (*)[10] | char* main.cpp:26:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 26 | scanf("%s",&a); | ~~~~~^~~~~~~~~
ソースコード
#include<stdio.h> #include <string.h> int main(void) { int n,nn,nnn; char a[10]; n=0; nn=0; nnn=0; while(1) { printf("%d%d%d",nnn,nn,n); n++; if(n==10) { nn++;n=0; } if(nn==10) { nnn++;nn=0; } if(nnn==10) { break; } scanf("%s",&a); if(a=="locked")continue; else if(a=="unlocked")break; } return 0; }